Changeset 526 for trunk/form_classes.php
- Timestamp:
- Apr 21, 2013, 10:23:56 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/form_classes.php
r517 r526 19 19 { 20 20 $FormManager->Classes = array( 21 'Action' => array( 22 'Title' => 'Akce', 23 'Table' => 'Action', 24 'Items' => array( 25 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), 26 'Title' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), 27 'URL' => array('Type' => 'Hyperlink', 'Caption' => 'Odkaz', 'Default' => ''), 28 'Icon' => array('Type' => 'TActionIcon', 'Caption' => 'Ikony', 'Default' => ''), 29 'Type' => array('Type' => 'TActionType', 'Caption' => 'Typ', 'Default' => ''), 30 'Group' => array('Type' => 'TActionGroup', 'Caption' => 'Skupina', 'Default' => ''), 31 'PermissionModule' => array('Type' => 'String', 'Caption' => 'Modul oprávnění', 'Default' => ''), 32 'PermissionOperation' => array('Type' => 'String', 'Caption' => 'Operace oprávnění', 'Default' => ''), 33 'Enable' => array('Type' => 'Boolean', 'Caption' => 'Povolení', 'Default' => ''), 34 ), 35 ), 36 'ActionIcon' => array( 37 'Title' => 'Ikony akcí', 38 'Table' => 'ActionIcon', 39 'Items' => array( 40 'Name' => array('Type' => 'String', 'Caption' => 'Název souboru', 'Default' => ''), 41 ), 42 ), 43 'ActionGroup' => array( 44 'Title' => 'Skupiny akcí', 45 'Table' => 'ActionGroup', 46 'Items' => array( 47 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), 48 ), 49 ), 50 'ActionType' => array( 51 'Title' => 'Typy akcí', 52 'Table' => 'ActionType', 53 'Items' => array( 54 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), 55 ), 56 ), 21 57 'FinanceBank' => array( 22 58 'Title' => 'Banky', … … 1099 1135 'Filter' => '1', 1100 1136 ), 1137 'TActionIcon' => array( 1138 'Type' => 'Reference', 1139 'Table' => 'ActionIcon', 1140 'Id' => 'Id', 1141 'Name' => 'Name', 1142 'Filter' => '1', 1143 ), 1144 'TActionType' => array( 1145 'Type' => 'Reference', 1146 'Table' => 'ActionType', 1147 'Id' => 'Id', 1148 'Name' => 'Name', 1149 'Filter' => '1', 1150 ), 1151 'TActionGroup' => array( 1152 'Type' => 'Reference', 1153 'Table' => 'ActionGroup', 1154 'Id' => 'Id', 1155 'Name' => 'Name', 1156 'Filter' => '1', 1157 ), 1101 1158 'TDirectory' => array( 1102 1159 'Type' => 'Reference',
Note:
See TracChangeset
for help on using the changeset viewer.