Changeset 573
- Timestamp:
- Aug 27, 2013, 10:58:24 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Export/Export.php
r571 r573 1 1 <?php 2 2 3 class Export extends Mod ule3 class Export extends Model 4 4 { 5 5 var $Id; -
trunk/includes/Version.php
r572 r573 1 1 <?php 2 2 3 $Revision = 57 2; // Subversion revision3 $Revision = 573; // Subversion revision 4 4 $DatabaseRevision = 567; // Database structure revision 5 $ReleaseTime = '2013-08-2 6';5 $ReleaseTime = '2013-08-27'; -
trunk/includes/global.php
r572 r573 2 2 3 3 include_once(dirname(__FILE__).'/Database.php'); 4 include_once(dirname(__FILE__).'/Base.php'); 4 5 include_once(dirname(__FILE__).'/system.php'); 5 6 include_once(dirname(__FILE__).'/Update.php'); … … 27 28 include_once(dirname(__FILE__).'/../Modules/ShoutBox/ShoutBox.php'); 28 29 include_once(dirname(__FILE__).'/../Modules/News/News.php'); 30 include_once(dirname(__FILE__).'/../Modules/Wiki/Wiki.php'); 29 31 include_once(dirname(__FILE__).'/../Modules/FrontPage/FrontPage.php'); 30 32 … … 83 85 $System->ModuleManager->RegisterModule(new ModuleShoutBox($System)); 84 86 $System->ModuleManager->RegisterModule(new ModuleNews($System)); 87 $System->ModuleManager->RegisterModule(new ModuleWiki($System)); 85 88 $System->ModuleManager->RegisterModule(new ModuleFrontPage($System)); 86 89 $System->ModuleManager->StartAll(); -
trunk/includes/system.php
r561 r573 2 2 3 3 include_once('Database.php'); 4 5 class Module6 {7 var $Database;8 var $Config;9 var $System;10 11 function __construct($System)12 {13 $this->Database = &$System->Database;14 $this->Config = &$System->Config;15 $this->System = &$System;16 }17 }18 4 19 5 class System … … 116 102 function RegisterPage($Path, $Handler) 117 103 { 118 104 if(is_array($Path)) 119 105 { 120 106 $Page = &$this->Pages;
Note:
See TracChangeset
for help on using the changeset viewer.