source: trunk/www/types/Custom.php@ 65

Last change on this file since 65 was 65, checked in by george, 16 years ago
  • Opraveno: Editace a ukládání podrobného nastavení světů.
  • Opraveno: Světy v generovaném realmlistu nebyly viditelné.
File size: 1.1 KB
Line 
1<?php
2
3RegisterType('YesNo', 'Enumeration', array('Ano', 'Ne'));
4RegisterType('NoYes', 'Enumeration', array('Ne', 'Ano'));
5RegisterType('GameType', 'Enumeration', array('Normální', 'PvP', 6 => 'RP', 8 => 'RPPvP'));
6RegisterType('SecurityLevel', 'Enumeration', array('Hráči', 'Moderátoři', 'GM', 'Administrátoři', 'Nikdo'));
7RegisterType('SkipCinematics', 'Enumeration', array('Ukázat vždy', 'Ukázat pouze pro první postavu rasy', 'Neukazovat vůbec'));
8RegisterType('TaskState', 'Enumeration', array('Čekající', 'Běžící', 'Dokončeno'));
9RegisterType('ServerExpansion', 'Enumeration', array('Classic', 'The Burning Crusade', 'Wrath of The Lich King'));
10RegisterType('ServerType', 'Enumeration', array('Normální', 'PvP', 'RP', 'RPPvP'));
11RegisterType('OnlineState', 'Enumeration', array('Neaktivní', 'Aktivní'));
12RegisterType('Database', 'PointerOneToOne', array('Table' => 'Database', 'Id' => 'Id', 'Name' => 'CONCAT(Name, " ", Version, " r", Revision)', 'Condition' => 'Emulator <> 0'));
13RegisterType('Client', 'PointerOneToOne', array('Table' => 'Client', 'Id' => 'Id', 'Name' => 'Version'));
14
15?>
Note: See TracBrowser for help on using the repository browser.