/** * @return DooConfig configuration settings defined in <i>common.conf.php</i>, auto create if the singleton has not been created yet. */ public static function conf() { if (self::$_conf === NULL) { self::$_conf = new DooConfig(); } return self::$_conf; }