Changeset 779 for trunk/Application
- Timestamp:
- Jan 6, 2016, 11:01:30 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/System.php
r747 r779 4 4 if(file_exists($ConfigFileName)) include_once($ConfigFileName); 5 5 6 include_once(dirname(__FILE__).'/../Common/Application.php');7 6 include_once(dirname(__FILE__).'/Version.php'); 8 7 include_once(dirname(__FILE__).'/../Common/Global.php'); 9 8 include_once(dirname(__FILE__).'/FormClasses.php'); 10 9 11 class Systemextends Application10 class Core extends Application 12 11 { 13 /** @var Database */14 var $Database;15 var $Modules;16 12 /** @var Type */ 17 13 var $Type; 18 14 var $Pages; 19 15 var $Bars; 20 /** @var AppModuleManager */21 var $ModuleManager;22 16 /** @var FormManager */ 23 17 var $FormManager; … … 32 26 function __construct() 33 27 { 28 parent::__construct(); 34 29 $this->Modules = array(); 35 30 $this->Pages = array(); 36 $this->ModuleManager = new AppModuleManager($this);37 31 $this->ModuleManager->FileName = dirname(__FILE__).'/../Config/ModulesConfig.php'; 38 $this->Database = new Database();39 32 $this->FormManager = new FormManager($this->Database); 40 33 $this->ShowPage = true;
Note:
See TracChangeset
for help on using the changeset viewer.