Changeset 538 for trunk/admin/index.php
- Timestamp:
- May 14, 2013, 9:21:06 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/index.php
r533 r538 6 6 function ShowMenu() 7 7 { 8 global $System ;8 global $System, $Config; 9 9 10 10 $Output = '<h3>Volby pro správu</h3>'. 11 '<a href="https:// wowpreklad.zdechov.net/mysql/">Správa databáze</a><br/>'.11 '<a href="https://'.$Config['Web']['Host'].'/phpmyadmin/">Správa databáze</a><br/>'. 12 12 '<small>Rozhraní phpMyAdmin pro přímou správu databáze</small><br/><br/>'. 13 13 '<a href="'.$System->Link('/action.php?action=dbkit').'">DB opravy</a><br/>'. … … 23 23 '<a href="'.$System->Link('/admin/?action=addnew').'">Přidání aktuality</a><br/>'. 24 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 '<a href="'.$System->Link('/admin/?action=testing').'">Testování</a><br/>'. 26 '<small>Testovací funkce</small><br/><br/>'; 27 27 return($Output); 28 28 } … … 68 68 } 69 69 70 function TestError( )70 function TestError($P1, $P2) 71 71 { 72 72 $s = $TT[0]; 73 } 74 75 function TestException($P1, $P2) 76 { 77 throw new Exception('Test exception'); 78 } 79 80 function TestSQLError($Query) 81 { 82 global $System; 83 84 $DbResult = $System->Database->query($Query); 85 } 86 87 function Testing() 88 { 89 global $System; 90 91 $Output = '<a href="'.$System->Link('/admin/?action=error').'">Testovací chyba</a><br/>'. 92 '<small>Vyvolá testovací chybu</small><br/><br/>'. 93 '<a href="'.$System->Link('/admin/?action=exception').'">Testovací výjimka</a><br/>'. 94 '<small>Vyvolá testovací chybu</small><br/><br/>'. 95 '<a href="'.$System->Link('/admin/?action=sqlerror').'">Chybný SQL dotaz</a><br/>'. 96 '<small>Vyvolá testovací chybu</small><br/><br/>'; 97 return($Output); 73 98 } 74 99 … … 80 105 if($_GET['action'] == 'img_level') $Output .= ImgLevelShow(); 81 106 else if($_GET['action'] == 'delerrlog') $Output .= DeleteErrorLog(); 82 else if($_GET['action'] == 'error') $Output .= TestError(); 107 else if($_GET['action'] == 'error') $Output .= TestError(12, 'test'); 108 else if($_GET['action'] == 'exception') $Output .= TestException(12, 'test'); 109 else if($_GET['action'] == 'sqlerror') $Output .= TestSQLError('SELECT dads FROM sdas'); 110 else if($_GET['action'] == 'testing') $Output .= Testing(); 83 111 else if($_GET['action'] == 'addnew') 84 112 {
Note:
See TracChangeset
for help on using the changeset viewer.