/** * Run the application */ public function run() { spl_autoload_extensions('.php, .class.php, .lib.php'); spl_autoload_register(array(self::instance(), '_autoload')); $this->_loadDir(); $con = Config_Framework_Database::getDbConn(); new Config_Framework_Route(); }
public function __construct() { $this->_class = get_class($this); $this->_dbConn = parent::getDbConn(); }