Public Member Functions | |
| setDebugData ($info) | |
| getLogged () | |
Static Public Member Functions | |
| static | getInstance () |
Private Member Functions | |
| __construct () | |
| __clone () | |
Private Attributes | |
| $debug_log = array() | |
Static Private Attributes | |
| static | $instance = __CLASS__ |
Definition at line 57 of file classloader.php.
| aliroDebug::__construct | ( | ) | [private] |
| aliroDebug::__clone | ( | ) | [private] |
| static aliroDebug::getInstance | ( | ) | [static] |
Definition at line 66 of file classloader.php.
Referenced by smartClassMapper::getClassPath(), smartAdminClassMapper::getClassPath(), and aliroAbstractRequest::getDebug().
00066 { 00067 return is_object(self::$instance) ? self::$instance : (self::$instance = new self::$instance); 00068 }
| aliroDebug::setDebugData | ( | $ | info | ) |
| aliroDebug::getLogged | ( | ) |
Definition at line 74 of file classloader.php.
00074 { 00075 $text = '<h4>'.count($this->debug_log).' classes loaded</h4>'; 00076 foreach ($this->debug_log as $k=>$class) $text .= "\n".($k+1)."<br />".$class.'<hr />'; 00077 return $text; 00078 }
aliroDebug::$instance = __CLASS__ [static, private] |
Definition at line 58 of file classloader.php.
aliroDebug::$debug_log = array() [private] |
Definition at line 60 of file classloader.php.
1.5.5