Changeset 588
- Timestamp:
- Nov 1, 2013, 11:00:59 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Version.php
r587 r588 1 1 <?php 2 2 3 $Revision = 5 75; // Subversion revision3 $Revision = 588; // Subversion revision 4 4 $DatabaseRevision = 584; // SQL structure revision 5 $ReleaseTime = '2013-1 0-31';5 $ReleaseTime = '2013-11-01'; -
trunk/FormClasses.php
r584 r588 27 27 ), 28 28 ), 29 'Action' => array(30 'Title' => 'Akce',31 'Table' => 'Action',32 'Items' => array(33 //'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''),34 'Title' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''),35 'URL' => array('Type' => 'Hyperlink', 'Caption' => 'Odkaz', 'Default' => ''),36 'Icon' => array('Type' => 'TActionIcon', 'Caption' => 'Ikony', 'Default' => '', 'Null' => true),37 'Type' => array('Type' => 'TActionType', 'Caption' => 'Typ', 'Default' => ''),38 'Group' => array('Type' => 'TActionGroup', 'Caption' => 'Skupina', 'Default' => '', 'Null' => true),39 'PermissionModule' => array('Type' => 'String', 'Caption' => 'Modul oprávnění', 'Default' => ''),40 'PermissionOperation' => array('Type' => 'String', 'Caption' => 'Operace oprávnění', 'Default' => ''),41 'Enable' => array('Type' => 'Boolean', 'Caption' => 'Povolení', 'Default' => ''),42 ),43 ),44 'ActionIcon' => array(45 'Title' => 'Ikony akcí',46 'Table' => 'ActionIcon',47 'Items' => array(48 'Name' => array('Type' => 'String', 'Caption' => 'Název souboru', 'Default' => ''),49 'Items' => array('Type' => 'TActionListIcon', 'Caption' => 'Položky', 'Default' => ''),50 ),51 ),52 'ActionGroup' => array(53 'Title' => 'Skupiny akcí',54 'Table' => 'ActionGroup',55 'Items' => array(56 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''),57 'Items' => array('Type' => 'TActionListGroup', 'Caption' => 'Položky', 'Default' => ''),58 ),59 ),60 'ActionType' => array(61 'Title' => 'Typy akcí',62 'Table' => 'ActionType',63 'Items' => array(64 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''),65 'Items' => array('Type' => 'TActionListType', 'Caption' => 'Položky', 'Default' => ''),66 ),67 ),68 29 'UserCustomerRel' => array( 69 30 'Title' => 'Vztahy uživatel - zákazník', -
trunk/Modules/Setup/Setup.php
r586 r588 3 3 class PageSetup extends Page 4 4 { 5 function __construct($System) 6 { 7 parent::__construct($System); 8 $this->FullTitle = 'Instalace aplikace'; 9 $this->ShortTitle = 'Instalátor'; 10 //$this->ParentClass = 'PagePortal'; 11 } 12 5 13 function Show() 6 14 { -
trunk/Modules/System/System.php
r586 r588 181 181 { 182 182 $this->System->RegisterPage('module', 'PageModules'); 183 $this->System->FormManager->RegisterClass('Action', array( 184 'Title' => 'Akce', 185 'Table' => 'Action', 186 'Items' => array( 187 //'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), 188 'Title' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), 189 'URL' => array('Type' => 'Hyperlink', 'Caption' => 'Odkaz', 'Default' => ''), 190 'Icon' => array('Type' => 'TActionIcon', 'Caption' => 'Ikony', 'Default' => '', 'Null' => true), 191 'Type' => array('Type' => 'TActionType', 'Caption' => 'Typ', 'Default' => ''), 192 'Group' => array('Type' => 'TActionGroup', 'Caption' => 'Skupina', 'Default' => '', 'Null' => true), 193 'PermissionOperation' => array('Type' => 'TPermissionOperation', 'Caption' => 'Operace oprávnění', 'Default' => ''), 194 'Enable' => array('Type' => 'Boolean', 'Caption' => 'Povolení', 'Default' => ''), 195 ), 196 )); 197 $this->System->FormManager->RegisterClass('ActionIcon', array( 198 'Title' => 'Ikony akcí', 199 'Table' => 'ActionIcon', 200 'Items' => array( 201 'Name' => array('Type' => 'String', 'Caption' => 'Název souboru', 'Default' => ''), 202 'Items' => array('Type' => 'TActionListIcon', 'Caption' => 'Položky', 'Default' => ''), 203 ), 204 )); 205 $this->System->FormManager->RegisterClass('ActionGroup', array( 206 'Title' => 'Skupiny akcí', 207 'Table' => 'ActionGroup', 208 'Items' => array( 209 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), 210 'Items' => array('Type' => 'TActionListGroup', 'Caption' => 'Položky', 'Default' => ''), 211 ), 212 )); 213 $this->System->FormManager->RegisterClass('ActionType', array( 214 'Title' => 'Typy akcí', 215 'Table' => 'ActionType', 216 'Items' => array( 217 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), 218 'Items' => array('Type' => 'TActionListType', 'Caption' => 'Položky', 'Default' => ''), 219 ), 220 )); 221 183 222 //$this->Manager->OnModuleChange = array($this, 'ModuleChange'); 184 223 //$this->LoadFromDatabase();
Note:
See TracChangeset
for help on using the changeset viewer.