Changeset 4599 for trunk/modules/systeminfo/controller/systeminfo.admin.php
- Timestamp:
- 08/27/10 23:01:58 (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/systeminfo/controller/systeminfo.admin.php
r4506 r4599 24 24 * 25 25 * @license GNU/GPL v2 or (at your option) any later version, see "/doc/LICENSE". 26 *27 26 * @author Jens-André Koch <vain@clansuite.com> 28 27 * @copyright Jens-André Koch (2005 - onwards) 29 *30 28 * @link http://www.clansuite.com 31 * @link http://gna.org/projects/clansuite32 33 29 * 34 30 * @version SVN: $Id: index.module.php 2625 2008-12-09 00:04:43Z vain $ … … 36 32 37 33 # Security Handler 38 if (defined('IN_CS') == false)34 if (defined('IN_CS') === false) 39 35 { 40 36 die('Clansuite not loaded. Direct Access forbidden.'); … … 48 44 * @subpackage Systeminfo 49 45 */ 50 class Clansuite_Module_Systeminfo_Admin extends Clansuite_Module_Controller implements Clansuite_Module_Interface46 class Clansuite_Module_Systeminfo_Admin extends Clansuite_Module_Controller 51 47 { 52 public function initializeModule( Clansuite_HttpRequest $request, Clansuite_HttpResponse $response)48 public function initializeModule() 53 49 { 54 50 $this->getModuleConfig(); … … 63 59 $this->getView()->setLayoutTemplate('index.tpl'); 64 60 65 $sysinfo = array_merge($this->assembleSystemInfos(), 66 $this->assembleDatabaseInfos()); 61 $sysinfo = array_merge($this->assembleSystemInfos(), $this->assembleDatabaseInfos()); 67 62 68 63 $this->getView()->assign('sysinfos', $sysinfo); … … 245 240 246 241 # Get APC Cache 247 $cache_apc = Clansuite_Cache_Factory::getCache('apc' , $this->getInjector());242 $cache_apc = Clansuite_Cache_Factory::getCache('apc'); 248 243 249 244 # Assign Data to the View
Note: See TracChangeset
for help on using the changeset viewer.
