Changeset 462 for trunk/form_classes.php
- Timestamp:
- Nov 10, 2012, 11:12:39 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/form_classes.php
r457 r462 1 1 <?php 2 2 3 /* 4 Item definition: 5 Type - identifikace typu z podporovaných 6 Caption - popisek, titulek položky 7 Default - výchozí hodnota 8 Null - hodnota nemusí být zadána 9 InList - sloupec viditelný v seznamu 10 Suffix - text za hodnotou 11 Description - popis významu položky 12 ReadOnly - je položky pouze pro čtení 13 Required - položka je vyžadována 14 */ 15 16 3 17 $FormClasses = array( 18 'Work' => array( 19 'Title' => 'Práce', 20 'Table' => 'Work', 21 'DefaultSortColumn' => 'TimeStart', 22 'Items' => array( 23 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), 24 'Description' => array('Type' => 'Text', 'Caption' => 'Popis', 'Default' => ''), 25 'TimeStart' => array('Type' => 'DateTime', 'Caption' => 'Čas začátku', 'Default' => ''), 26 'Duration' => array('Type' => 'Float', 'Caption' => 'Trvání', 'Default' => '1', 'Suffix' => 'hodin'), 27 'User' => array('Type' => 'TUser', 'Caption' => 'Uživatel', 'Default' => '1', 'Null' => true), 28 'Task' => array('Type' => 'TTask', 'Caption' => 'Úkol', 'Default' => '', 'Null' => true), 29 ), 30 ), 4 31 'NetworkDeviceConfig' => array( 5 32 'Title' => 'Nastavení zařízení', … … 83 110 'DefaultSortColumn' => 'Name', 84 111 'Items' => array( 85 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => '' ),112 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => '', 'Required' => true), 86 113 'Description' => array('Type' => 'Text', 'Caption' => 'Popis', 'Default' => ''), 87 'TimeCreate' => array('Type' => 'Date', 'Caption' => 'Datum zadání', 'Default' => '' ),88 'TimeDue' => array('Type' => 'Date', 'Caption' => 'Termín', 'Default' => '' ),114 'TimeCreate' => array('Type' => 'Date', 'Caption' => 'Datum zadání', 'Default' => '', 'Required' => true), 115 'TimeDue' => array('Type' => 'Date', 'Caption' => 'Termín', 'Default' => '', 'Null' => true), 89 116 'TimeClose' => array('Type' => 'Date', 'Caption' => 'Datum uzavření', 'Default' => '', 'Null' => true), 90 'Priority' => array('Type' => 'TPriority', 'Caption' => 'Důležitost', 'Default' => '0'),117 'Priority' => array('Type' => 'TPriority', 'Caption' => 'Důležitost', 'Default' => 1), 91 118 'Conclusion' => array('Type' => 'Text', 'Caption' => 'Vyhodnocení', 'Default' => ''), 92 'Public' => array('Type' => 'Boolean', 'Caption' => 'Veřejné', 'Default' => '0'), 119 'Public' => array('Type' => 'Boolean', 'Caption' => 'Veřejné', 'Default' => '0'), 93 120 'Progress' => array('Type' => 'Integer', 'Caption' => 'Průběh', 'Default' => '0'), 94 121 'Group' => array('Type' => 'TTaskGroup', 'Caption' => 'Kategorie', 'Default' => '', 'Null' => true), 122 'AssignedTo' => array('Type' => 'TUser', 'Caption' => 'Přiřazeno', 'Default' => '', 'Null' => true), 95 123 ), 96 124 ), … … 800 828 'Filter' => '1', 801 829 ), 830 'TTask' => array( 831 'Type' => 'Reference', 832 'Table' => 'Task', 833 'Id' => 'Id', 834 'Name' => 'Name', 835 'Filter' => '1', 836 ), 802 837 'TDocumentLineSequenceListYear' => array( 803 838 'Type' => 'ManyToOne',
Note:
See TracChangeset
for help on using the changeset viewer.