Changeset 900 for trunk/Packages/Common/Modules/Setup.php
- Timestamp:
- Feb 17, 2021, 5:15:29 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Modules/Setup.php
r899 r900 59 59 $Output = $this->UpdateManager->Upgrade(); 60 60 return $Output; 61 }62 63 function InsertSampleData(): void64 {65 61 } 66 62 } … … 81 77 $this->FullTitle = T('Application setup'); 82 78 $this->ShortTitle = T('Application setup'); 83 //$this->ParentClass = 'Page Portal';79 //$this->ParentClass = 'PageSetupRedirect'; 84 80 $this->ConfigDir = dirname(dirname(dirname(__FILE__))).'/Config'; 85 81 $this->YesNo = array(false => T('No'), true => T('Yes')); … … 212 208 { 213 209 $Output .= '<h3>Vložení vzorových dat</h3>'; 214 ModuleSetup::Cast($this->System->GetModule('Setup'))->InsertSampleData();210 $this->System->ModuleManager->Perform(array(ModuleAction::InsertSampleData), array(ModuleCondition::Installed)); 215 211 $Output .= $this->ControlPanel(); 216 212 }
Note:
See TracChangeset
for help on using the changeset viewer.