Changeset 779 for trunk/Packages/Common/AppModule.php
- Timestamp:
- Jan 6, 2016, 11:01:30 PM (9 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/AppModule.php
r778 r779 190 190 var $System; 191 191 var $FileName; 192 var $ModulesDir; 192 193 var $OnLoadModules; 193 194 … … 197 198 $this->System = &$System; 198 199 $this->FileName = 'Config/Modules.php'; 200 $this->ModulesDir = dirname(__FILE__).'/../../Modules'; 199 201 } 200 202 … … 364 366 if(method_exists($this->OnLoadModules[0], $this->OnLoadModules[1])) 365 367 $this->OnLoadModules(); 366 else $this->LoadModulesFromDir( dirname(__FILE__).'/../Modules');367 } 368 } 368 else $this->LoadModulesFromDir($this->ModulesDir); 369 } 370 }
Note:
See TracChangeset
for help on using the changeset viewer.