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 56 of file classloader.php.
| aliroDebug::__construct | ( | ) | [private] |
| aliroDebug::__clone | ( | ) | [private] |
| static aliroDebug::getInstance | ( | ) | [static] |
Definition at line 65 of file classloader.php.
Referenced by smartClassMapper::getClassPath(), smartAdminClassMapper::getClassPath(), and aliroAbstractRequest::getDebug().
00065 { 00066 return is_object(self::$instance) ? self::$instance : (self::$instance = new self::$instance); 00067 }
| aliroDebug::setDebugData | ( | $ | info | ) |
| aliroDebug::getLogged | ( | ) |
Definition at line 73 of file classloader.php.
00073 { 00074 $text = '<h4>'.count($this->debug_log).' classes loaded</h4>'; 00075 foreach ($this->debug_log as $k=>$class) $text .= "\n".($k+1)."<br />".$class.'<hr />'; 00076 return $text; 00077 }
aliroDebug::$instance = __CLASS__ [static, private] |
Definition at line 57 of file classloader.php.
aliroDebug::$debug_log = array() [private] |
Definition at line 59 of file classloader.php.
1.5.5