1 | <?php
|
---|
2 |
|
---|
3 | RegisterType('YesNo', 'Enumeration', array('Ano', 'Ne'));
|
---|
4 | RegisterType('NoYes', 'Enumeration', array('Ne', 'Ano'));
|
---|
5 | RegisterType('GameType', 'Enumeration', array('Normální', 'PvP', 6 => 'RP', 8 => 'RPPvP'));
|
---|
6 | RegisterType('SecurityLevel', 'Enumeration', array('Hráči', 'Moderátoři', 'GM', 'Administrátoři', 'Nikdo'));
|
---|
7 | RegisterType('SkipCinematics', 'Enumeration', array('Ukázat vždy', 'Ukázat pouze pro první postavu rasy', 'Neukazovat vůbec'));
|
---|
8 | RegisterType('TaskState', 'Enumeration', array('Čekající', 'Běžící', 'Dokončeno'));
|
---|
9 | RegisterType('ServerExpansion', 'Enumeration', array('Classic', 'The Burning Crusade', 'Wrath of The Lich King'));
|
---|
10 | RegisterType('ServerType', 'Enumeration', array('Normální', 'PvP', 'RP', 'RPPvP'));
|
---|
11 | RegisterType('OnlineState', 'Enumeration', array('Neaktivní', 'Aktivní'));
|
---|
12 | RegisterType('Database', 'PointerOneToOne', array('Table' => 'Database', 'Id' => 'Id', 'Name' => 'CONCAT(Name, " ", Version, " r", Revision)', 'Condition' => 'Emulator <> 0'));
|
---|
13 | RegisterType('Client', 'PointerOneToOne', array('Table' => 'Client', 'Id' => 'Id', 'Name' => 'Version'));
|
---|
14 |
|
---|
15 | ?>
|
---|