Changeset 357 for trunk/includes/global_function.php
- Timestamp:
- Mar 5, 2010, 7:42:00 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/global_function.php
r309 r357 1 1 <?php 2 2 3 // User licence levels 3 4 define('LICENCE_ANONYMOUS', -1); 4 5 define('LICENCE_USER', 0); 5 6 define('LICENCE_MODERATOR', 1); 6 7 define('LICENCE_ADMIN', 2); 8 9 // Log types 10 define('LOG_TYPE_TRANSLATION', 1); 11 define('LOG_TYPE_DOWNLOAD', 2); 12 define('LOG_TYPE_USER', 3); 13 define('LOG_TYPE_MODERATOR', 4); 14 define('LOG_TYPE_ERROR', 10); 15 define('LOG_TYPE_IMPORT', 11); 16 define('LOG_TYPE_EXPORT', 12); 17 define('LOG_TYPE_CZWOW', 13); 18 define('LOG_TYPE_ADMINISTRATION', 14); 19 7 20 8 21 function utf2ascii($text) … … 257 270 } 258 271 259 $LogTypes = array260 (261 0 => array('Name' => '', 'Color' => 'brown', 'Description' => ''),262 1 => array('Name' => 'Překlady', 'Color' => 'green', 'Description' => 'Operace s překladdy'),263 2 => array('Name' => 'Stažení', 'Color' => 'brown', 'Description' => 'Stáhnutí souboru'),264 3 => array('Name' => 'Uživatelé', 'Color' => 'blue', 'Description' => 'Přihlášení uživatelů, nastavení, registrace'),265 4 => array('Name' => 'Moderátor', 'Color' => 'orange', 'Description' => 'Operace administrátorů a moderátorů'),266 10 => array('Name' => 'Chyby', 'Color' => 'red', 'Description' => 'Zachycené chybové hlášení'),267 11 => array('Name' => 'Import', 'Color' => '#A020F0', 'Description' => 'Záznam změn při importu'),268 12 => array('Name' => 'Export', 'Color' => '#1080F0', 'Description' => 'Záznam akcí s exporty'),269 );270 271 272 $Moderators = array('Překladatel', 'Moderátor', 'Administrátor'); 272 273 … … 291 292 $Database->SQLCommand($Query); 292 293 } 293 294 $client_files = array295 (296 0 => 'LocalizationStrings',297 1 => 'SpellBufDescription_1',298 2 => 'SpellDescription_1',299 3 => 'SpellDescription_2',300 4 => 'SpellDescription_3',301 5 => 'SpellDescription_4',302 6 => 'tallent',303 );304 294 305 295 function HumanDate($SQLDateTime)
Note:
See TracChangeset
for help on using the changeset viewer.