|
|
|
|
| Show Logs
Delete Logs |
|
";
?>
|
| | | | |
$line){
$strings=explode("|",$line);
if($row==1){
echo "";
$row=2;
}else{
echo "
";
$row=1;
}
$first_pix=0;
foreach($strings as $num=>$string){
if(!$string)$string=" ";
if($string=="\n") break;
if($num==2){
echo "| ".$string." | ";
}else{
echo "".$string." | ";
}
$first_pix=1;
}
echo "
";
}
echo "
";
}else{ print_error(t("ID_MSG_FILE_NOT_EXISTS"),$pa_setup["logs_filename"]);
}
return;
}
if($var2=="del"){
if(file_exists($pa_setup["cache_dir"].$pa_setup["logs_filename"])){
unlink($pa_setup["cache_dir"].$pa_setup["logs_filename"]);
printf("".t("ID_FILE_WAS_DELETED")."",$pa_setup["logs_filename"]);
}else{
print_error(t("ID_MSG_FILE_NOT_EXISTS"),$pa_setup["logs_filename"]);
}
}
?>