Changeset 556 for trunk/Common
- Timestamp:
- Jul 15, 2013, 11:23:55 PM (12 years ago)
- Location:
- trunk/Common
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/AppModule.php
r548 r556 48 48 { 49 49 var $Modules; 50 var $System; 50 51 51 function __construct( )52 function __construct($System) 52 53 { 53 $this->Modules = array(); 54 $this->Modules = array(); 55 $this->System = &$System; 54 56 } 55 57 … … 99 101 return(''); 100 102 } 101 103 104 function LoadModulesFromDir($Directory) 105 { 106 $List = scandir($Directory); 107 foreach($List as $Item) 108 { 109 if(is_dir($Directory.'/'.$Item) and ($Item != '.') and ($Item != '..')) 110 { 111 include_once($Directory.'/'.$Item.'/'.$Item.'.php'); 112 $ModuleName = 'Module'.$Item; 113 $this->RegisterModule(new $ModuleName($this->System)); 114 } 115 } 116 } 102 117 } -
trunk/Common/Global.php
r553 r556 20 20 include_once(dirname(__FILE__).'/Form/Form.php'); 21 21 include_once(dirname(__FILE__).'/../FormClasses.php'); 22 23 // Application modules24 // TODO: Should be configurable25 include_once(dirname(__FILE__).'/../Modules/System/System.php');26 include_once(dirname(__FILE__).'/../Modules/Error/Error.php');27 include_once(dirname(__FILE__).'/../Modules/Log/Log.php');28 include_once(dirname(__FILE__).'/../Modules/File/File.php');29 include_once(dirname(__FILE__).'/../Modules/Meteostation/Meteostation.php');30 include_once(dirname(__FILE__).'/../Modules/Portal/Portal.php');31 include_once(dirname(__FILE__).'/../Modules/IS/IS.php');32 include_once(dirname(__FILE__).'/../Modules/Network/Network.php');33 include_once(dirname(__FILE__).'/../Modules/TV/TV.php');34 include_once(dirname(__FILE__).'/../Modules/OpeningHours/OpeningHours.php');35 include_once(dirname(__FILE__).'/../Modules/Map/Map.php');36 include_once(dirname(__FILE__).'/../Modules/Chat/Chat.php');37 include_once(dirname(__FILE__).'/../Modules/WebCam/WebCam.php');38 include_once(dirname(__FILE__).'/../Modules/User/User.php');39 include_once(dirname(__FILE__).'/../Modules/Finance/Finance.php');40 include_once(dirname(__FILE__).'/../Modules/FinanceBankAPI/FinanceBankAPI.php');41 include_once(dirname(__FILE__).'/../Modules/Customer/Customer.php');42 include_once(dirname(__FILE__).'/../Modules/NetworkShare/NetworkShare.php');43 include_once(dirname(__FILE__).'/../Modules/News/News.php');44 include_once(dirname(__FILE__).'/../Modules/Meals/Meals.php');45 include_once(dirname(__FILE__).'/../Modules/NetworkTopology/NetworkTopology.php');46 include_once(dirname(__FILE__).'/../Modules/NetworkConfig/NetworkConfig.php');47 include_once(dirname(__FILE__).'/../Modules/NetworkConfigLinux/NetworkConfigLinux.php');48 include_once(dirname(__FILE__).'/../Modules/NetworkConfigRouterOS/NetworkConfigRouterOS.php');49 include_once(dirname(__FILE__).'/../Modules/TimeMeasure/TimeMeasure.php');50 include_once(dirname(__FILE__).'/../Modules/Task/Task.php');51 include_once(dirname(__FILE__).'/../Modules/Stock/Stock.php');52 include_once(dirname(__FILE__).'/../Modules/Search/Search.php');53 include_once(dirname(__FILE__).'/../Modules/EmailQueue/EmailQueue.php');54 22 55 23 function GlobalInit() … … 73 41 // TODO: unset general global variable $Config after setting is loaded to objects 74 42 $System->Config = &$Config; 75 $System->Database->Connect($Config['Database']['Host'], $Config['Database']['User'], $Config['Database']['Password'], $Config['Database']['Database']); 43 $System->Database->Connect($Config['Database']['Host'], $Config['Database']['User'], 44 $Config['Database']['Password'], $Config['Database']['Database']); 76 45 $System->Database->Prefix = $Config['Database']['Prefix']; 77 46 $System->Database->charset($Config['Database']['Charset']); … … 91 60 RegisterFormClasses($System->FormManager); 92 61 93 // Register new modules 94 // TODO: Should be configurable 95 $System->ModuleManager->RegisterModule(new ModuleError($System)); 96 $System->ModuleManager->RegisterModule(new ModuleSystem($System)); 97 $System->ModuleManager->RegisterModule(new ModuleLog($System)); 98 $System->ModuleManager->RegisterModule(new ModuleFile($System)); 99 $System->ModuleManager->RegisterModule(new ModuleUser($System)); 100 $System->ModuleManager->RegisterModule(new ModuleEmailQueue($System)); 101 $System->ModuleManager->RegisterModule(new ModuleMeteostation($System)); 102 $System->ModuleManager->RegisterModule(new ModulePortal($System)); 103 $System->ModuleManager->RegisterModule(new ModuleIS($System)); 104 $System->ModuleManager->RegisterModule(new ModuleNetwork($System)); 105 $System->ModuleManager->RegisterModule(new ModuleTV($System)); 106 $System->ModuleManager->RegisterModule(new ModuleOpeningHours($System)); 107 $System->ModuleManager->RegisterModule(new ModuleMap($System)); 108 $System->ModuleManager->RegisterModule(new ModuleChat($System)); 109 $System->ModuleManager->RegisterModule(new ModuleWebCam($System)); 110 $System->ModuleManager->RegisterModule(new ModuleFinance($System)); 111 $System->ModuleManager->RegisterModule(new ModuleFinanceBankAPI($System)); 112 $System->ModuleManager->RegisterModule(new ModuleCustomer($System)); 113 $System->ModuleManager->RegisterModule(new ModuleNetworkShare($System)); 114 $System->ModuleManager->RegisterModule(new ModuleNews($System)); 115 $System->ModuleManager->RegisterModule(new ModuleMeals($System)); 116 $System->ModuleManager->RegisterModule(new ModuleNetworkTopology($System)); 117 $System->ModuleManager->RegisterModule(new ModuleNetworkConfig($System)); 118 $System->ModuleManager->RegisterModule(new ModuleNetworkConfigRouterOS($System)); 119 $System->ModuleManager->RegisterModule(new ModuleNetworkConfigLinux($System)); 120 $System->ModuleManager->RegisterModule(new ModuleTimeMeasure($System)); 121 $System->ModuleManager->RegisterModule(new ModuleTask($System)); 122 $System->ModuleManager->RegisterModule(new ModuleStock($System)); 123 $System->ModuleManager->RegisterModule(new ModuleSearch($System)); 62 // Register and start existing modules 63 $System->ModuleManager->LoadModulesFromDir(dirname(__FILE__).'/../Modules'); 124 64 $System->ModuleManager->StartAll(); 125 65 } 126 66 127 $MonthNames = array('', 'Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen', 'Červenec', 'Srpen', 'Září', 'Říjen', 'Listopad', 'Prosinec'); 67 $MonthNames = array('', 'Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen', 68 'Červenec', 'Srpen', 'Září', 'Říjen', 'Listopad', 'Prosinec'); 128 69 129 70 $UnitNames = array('B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB'); … … 390 331 { 391 332 return(str_replace( 392 array('á', 'č', 'ď', 'é', 'ě', 'í', 'ľ', 'ň', 'ó', 'ř', 'š', 'ť', 'ú', 'ů', 'ý', 'ž', 'Á', 'Č', 'Ď', 'É', 'Ě', 'Í', 'Ľ', 'Ň', 'Ó', 'Ř', 'Š', 'Ť', 'Ú', 'Ů', 'Ý', 'Ž'), 393 array('a', 'c', 'd', 'e', 'e', 'i', 'l', 'n', 'o', 'r', 's', 't', 'u', 'u', 'y', 'z', 'A', 'C', 'D', 'E', 'E', 'I', 'L', 'N', 'O', 'R', 'S', 'T', 'U', 'U', 'Y', 'Z'), 333 array('á', 'č', 'ď', 'é', 'ě', 'í', 'ľ', 'ň', 'ó', 'ř', 'š', 'ť', 'ú', 'ů', 334 'ý', 'ž', 'Á', 'Č', 'Ď', 'É', 'Ě', 'Í', 'Ľ', 'Ň', 'Ó', 'Ř', 'Š', 'Ť', 'Ú', 'Ů', 'Ý', 'Ž'), 335 array('a', 'c', 'd', 'e', 'e', 'i', 'l', 'n', 'o', 'r', 's', 't', 'u', 'u', 336 'y', 'z', 'A', 'C', 'D', 'E', 'E', 'I', 'L', 'N', 'O', 'R', 'S', 'T', 'U', 'U', 'Y', 'Z'), 394 337 $Text)); 395 338 } … … 398 341 { 399 342 return(strtr(strtolower(trim($Name)), array(' ' => '-', '.' => '', '(' => '-', ')' => '-', 400 'č' => 'c', 'š' => 's', 'ě' => 'e', 'ř' => 'r', 'ž' => 'z', 'ý' => 'y', 'á' => 'a', 'í' => 'i', 'é' => 'e', 'ů' => 'u', 'ú' => 'u', 'ď' => 'd', 'ť' => 't', 'ň' => 'n', 'ó' => 'o', 401 'Č' => 'c', 'Š' => 's', 'Ě' => 'e', 'Ř' => 'r', 'Ž' => 'z', 'Ý' => 'y', 'Á' => 'a', 'Í' => 'i', 'É' => 'e', 'Ů' => 'u', 'Ú' => 'u', 'Ď' => 'd', 'Ť' => 't', 'Ň' => 'n', 'Ó' => 'o', 343 'č' => 'c', 'š' => 's', 'ě' => 'e', 'ř' => 'r', 'ž' => 'z', 'ý' => 'y', 344 'á' => 'a', 'í' => 'i', 'é' => 'e', 'ů' => 'u', 'ú' => 'u', 'ď' => 'd', 345 'ť' => 't', 'ň' => 'n', 'ó' => 'o', 346 'Č' => 'c', 'Š' => 's', 'Ě' => 'e', 'Ř' => 'r', 'Ž' => 'z', 'Ý' => 'y', 347 'Á' => 'a', 'Í' => 'i', 'É' => 'e', 'Ů' => 'u', 'Ú' => 'u', 'Ď' => 'd', 348 'Ť' => 't', 'Ň' => 'n', 'Ó' => 'o', 402 349 ))); 403 350 } -
trunk/Common/System.php
r553 r556 18 18 $this->Modules = array(); 19 19 $this->Pages = array(); 20 $this->ModuleManager = new AppModuleManager( );20 $this->ModuleManager = new AppModuleManager($this); 21 21 $this->Database = new Database(); 22 22 $this->FormManager = new FormManager($this->Database); -
trunk/Common/Version.php
r555 r556 1 1 <?php 2 2 3 $Revision = 55 5; // Subversion revision3 $Revision = 556; // Subversion revision 4 4 $DatabaseRevision = 551; // SQL structure revision 5 $ReleaseTime = '2013-07- 07';5 $ReleaseTime = '2013-07-15'; 6 6
Note:
See TracChangeset
for help on using the changeset viewer.