Размер файла: 2.77Kb
<?php
if (!file_exists($userpath.$editfile.'.wml'))
{
print $head.cyr2utf('<card id="main" title="Меню"><p>'.
'<b>Файл '.$editfile.'.wml не найден!</b><br/>'.
'<a href="?'.$id.'/pm'.$dmpage.$mpage.'">Менеджер страниц</a>'.
'</p></card></wml>');
exit;
}
if ($action=='show') {header('Location: http://'.$user.'.kmx.ru/'.$editfile.'.wml?'.substr(mt_rand(),1));exit;}
if ($action=='edit') {include($buildpath.'structure.php');exit;}
if ($action=='purge') {include($buildpath.'purge.php');exit;}
if ($action=='rename') {include($buildpath.'rename.php');exit;}
if ($action=='copy') {include($buildpath.'copy.php');exit;}
if ($action=='new') {include($buildpath.'newpage.php');exit;}
if ($action=='delete') {include($buildpath.'delete.php');exit;}
/*
$npage='';
$page=file($userpath.$editfile.'.wml');
for ($i=0;$i<sizeof($page);$i++)
{
if (substr(trim($page[$i]),0,12)=='<!-- cnt -->') {$page[$i]='<!-- delete -->';}
if (($editfile=='index')&&(trim($page[$i])=='</p></card></wml>')) $npage.='<!-- cnt --><br/><a href="http://top.kmx.ru/'.$user.'"><img src="http://cnt.kmx.ru/'.$user.'" alt="TOP-KMX.Ru"/></a>'."\n".trim($page[$i])."\n";
elseif (trim($page[$i])!='<!-- delete -->') $npage.=trim($page[$i])."\n";
}
$fp = fopen ($userpath.$editfile.'.wml', "w+");
fwrite ($fp, $npage);
fclose ($fp);
*/
include($buildpath.'page_restore.php');
print $head.cyr2utf('<card id="main" title="Меню">'.
'<do name="x" type="options" label="xPanel"><go href="http://wap.kmx.ru/?'.$id.'"/></do>'.
'<do name="m" type="options" label="Менеджер"><go href="http://wap.kmx.ru/?'.$id.'/pm'.$dmpage.$mpage.'"/></do>'.
'<p>');
$size=filesize($userpath.$editfile.'.wml');
if ($size<1000) $printsize=$size.'b';
if ($size>=1000) $printsize=(round(10*$size/1024)/10).'kb';
print cyr2utf('<b>Файл: '.$editfile.'.wml</b><br/>');
print cyr2utf('Размер: '.$printsize.'<br/>');
print cyr2utf('<a href="http://wap.kmx.ru/?'.$id.'/pm'.$dmpage.$mpage.'/'.$editfile.'/show">Смотреть</a><br/>');
print cyr2utf('<a href="http://wap.kmx.ru/?'.$id.'/pm'.$dmpage.$mpage.'/'.$editfile.'/edit">Редактировать</a><br/>');
print cyr2utf('<a href="http://wap.kmx.ru/?'.$id.'/pm'.$dmpage.$mpage.'/'.$editfile.'/purge">Очистить</a><br/>');
if ($editfile!='index') print cyr2utf('<a href="http://wap.kmx.ru/?'.$id.'/pm'.$dmpage.$mpage.'/'.$editfile.'/rename">Переименовать</a><br/>');
print cyr2utf('<a href="http://wap.kmx.ru/?'.$id.'/pm'.$dmpage.$mpage.'/'.$editfile.'/copy">Копировать</a><br/>');
if ($editfile!='index') print cyr2utf('<a href="http://wap.kmx.ru/?'.$id.'/pm'.$dmpage.$mpage.'/'.$editfile.'/delete">Удалить</a><br/>');
print '<br/>';
print cyr2utf('<a href="http://wap.kmx.ru/?'.$id.'/pm'.$dmpage.$mpage.'">Менеджер страниц</a>');
print '</p></card></wml>';
exit;
?>