Changeset 926 for trunk/engine/classes/Engine.class.php
- Timestamp:
- 06/05/10 16:24:37 (2 years ago)
- Files:
-
- 1 modified
-
trunk/engine/classes/Engine.class.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/engine/classes/Engine.class.php
r907 r926 41 41 protected $aConfigModule; 42 42 public $iTimeLoadModule=0; 43 protected $iTimeInit=null; 43 44 44 45 /** … … 54 55 */ 55 56 protected function __construct() { 57 $this->iTimeInit=microtime(true); 56 58 if (get_magic_quotes_gpc()) { 57 59 func_stripslashes($_REQUEST); … … 394 396 public function getStats() { 395 397 return array('sql'=>$this->Database_GetStats(),'cache'=>$this->Cache_GetStats(),'engine'=>array('time_load_module'=>round($this->iTimeLoadModule,3))); 398 } 399 400 public function GetTimeInit() { 401 return $this->iTimeInit; 396 402 } 397 403
