/** * Read and store the application.ini config file. */ private static function read() { if (defined('CONFIG_ROOT')) { $settings = array(); if (file_exists(CONFIG_ROOT . 'application.ini')) { self::$store = parse_ini_file(CONFIG_ROOT . 'application.ini', true); } } self::$read = true; }