Changeset 506 for trunk/Common/Global.php
- Timestamp:
- Apr 1, 2013, 10:17:42 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Global.php
r505 r506 22 22 include_once(dirname(__FILE__).'/Page.php'); 23 23 include_once(dirname(__FILE__).'/Form/Form.php'); 24 include_once(dirname(__FILE__).'/../aktuality/news.php');25 24 include_once(dirname(__FILE__).'/../finance/bills.php'); 26 25 include_once(dirname(__FILE__).'/../finance/finance.php'); … … 43 42 include_once(dirname(__FILE__).'/../Modules/FinanceBankAPI/FinanceBankAPI.php'); 44 43 include_once(dirname(__FILE__).'/../Modules/NetworkShare/NetworkShare.php'); 44 include_once(dirname(__FILE__).'/../Modules/News/News.php'); 45 45 46 46 class System extends Module … … 194 194 $System->AddModule(new User()); 195 195 if(isset($_SERVER['REMOTE_ADDR'])) $System->Modules['User']->Check(); 196 $System->AddModule(new News());197 196 $System->AddModule(new Bill()); 198 197 $System->AddModule(new Finance()); … … 215 214 $System->ModuleManager->RegisterModule(new ModuleFinanceBankAPI($System)); 216 215 $System->ModuleManager->RegisterModule(new ModuleNetworkShare($System)); 216 $System->ModuleManager->RegisterModule(new ModuleNews($System)); 217 217 $System->ModuleManager->StartAll(); 218 218 }
Note:
See TracChangeset
for help on using the changeset viewer.