Changeset 548 for trunk/includes/system.php
- Timestamp:
- Jun 18, 2013, 7:23:39 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/system.php
r545 r548 43 43 $this->Database->LogSQLQuery = $this->Config['Web']['LogSQLQuery']; 44 44 $this->ModuleManager = new AppModuleManager(); 45 46 $this->Menu = array 47 ( 48 array( 49 'Title' => 'Stav dokončení', 50 'Hint' => 'Stav dokončení překládů', 51 'Link' => $this->Link('/statistic.php'), 52 'Permission' => LICENCE_ANONYMOUS, 53 'Icon' => '', 54 ), 55 array( 56 'Title' => 'Servery', 57 'Hint' => 'Seznam serverů, kde je nasazena čeština v praxi', 58 'Link' => $this->Link('/serverlist.php'), 59 'Permission' => LICENCE_ANONYMOUS, 60 'Icon' => '', 61 ), 62 array( 63 'Title' => 'Exporty', 64 'Hint' => 'Zde si můžete stáhnout přeložené texty', 65 'Link' => $this->Link('/export/'), 66 'Permission' => LICENCE_ANONYMOUS, 67 'Icon' => '', 68 ), 69 array( 70 'Title' => 'Soubory', 71 'Hint' => 'Stahování různých pomocných souborů a programů', 72 'Link' => $this->Link('/download.php'), 73 'Permission' => LICENCE_ANONYMOUS, 74 'Icon' => '', 75 ), 76 array( 77 'Title' => 'Pokyny', 78 'Hint' => 'Informace k překladu hry', 79 'Link' => $this->Link('/info.php'), 80 'Permission' => LICENCE_ANONYMOUS, 81 'Icon' => '', 82 ), 83 array( 84 'Title' => 'Zdroje dat', 85 'Hint' => 'Informace o překladových skupinách', 86 'Link' => $this->Link('/TranslationList.php?action=grouplist'), 87 'Permission' => LICENCE_ANONYMOUS, 88 'Icon' => '', 89 ), 90 array( 91 'Title' => 'Prezentace', 92 'Hint' => 'Prezentace a motivace překladu', 93 'Link' => $this->Link('/promotion.php'), 94 'Permission' => LICENCE_ANONYMOUS, 95 'Icon' => '', 96 ), 97 array( 98 'Title' => 'Verze hry', 99 'Hint' => 'Seznam verzí herního klienta', 100 'Link' => $this->Link('/version.php'), 101 'Permission' => LICENCE_ANONYMOUS, 102 'Icon' => '', 103 ), 104 array( 105 'Title' => 'IRC chat', 106 'Hint' => 'IRC chat pro překladatele', 107 'Link' => 'http://embed.mibbit.com/?server=game.zdechov.net%3A6667&channel=%23wowpreklad&forcePrompt=true&charset=utf-8', 108 'Permission' => LICENCE_ANONYMOUS, 109 'Icon' => '', 110 ), 111 array( 112 'Title' => 'Správa', 113 'Hint' => 'Volby pro správu', 114 'Link' => $this->Link('/admin/'), 115 'Permission' => LICENCE_ADMIN, 116 'Icon' => '', 117 ), 118 ); 119 45 120 } 46 121 … … 69 144 $Page[$LastKey] = $Handler; 70 145 } else $this->Pages[$Path] = $Handler; 146 } 147 148 function RegisterMenuItem($MenuItem) 149 { 150 $this->Menu[] = $MenuItem; 71 151 } 72 152
Note:
See TracChangeset
for help on using the changeset viewer.