Changeset 533 for trunk/admin/index.php
- Timestamp:
- Feb 24, 2013, 11:00:16 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/index.php
r510 r533 22 22 '<small>Provede vymazání všech chybových záznamů v logu</small><br/><br/>'. 23 23 '<a href="'.$System->Link('/admin/?action=addnew').'">Přidání aktuality</a><br/>'. 24 '<small>Přidá aktulitu na hlavní stranu projektu</small><br/><br/>'; 24 '<small>Přidá aktulitu na hlavní stranu projektu</small><br/><br/>'. 25 '<a href="'.$System->Link('/admin/?action=error').'">Testovací chyba</a><br/>'. 26 '<small>Vyvolá testovací chybu</small><br/><br/>'; 25 27 return($Output); 26 28 } … … 66 68 } 67 69 70 function TestError() 71 { 72 $s = $TT[0]; 73 } 74 68 75 $Output = ''; 69 76 if($User->Licence(LICENCE_ADMIN)) … … 71 78 if(array_key_exists('action', $_GET)) 72 79 { 73 if($_GET['action'] == 'img_level') 74 { 75 $Output .= ImgLevelShow(); 76 } else 77 if($_GET['action'] == 'delerrlog') $Output .= DeleteErrorLog(); 78 else 79 if($_GET['action'] == 'addnew') 80 if($_GET['action'] == 'img_level') $Output .= ImgLevelShow(); 81 else if($_GET['action'] == 'delerrlog') $Output .= DeleteErrorLog(); 82 else if($_GET['action'] == 'error') $Output .= TestError(); 83 else if($_GET['action'] == 'addnew') 80 84 { 81 85 $Output .= SaveNew();
Note:
See TracChangeset
for help on using the changeset viewer.