Esempio n. 1
0
 private function __construct()
 {
     set_exception_handler(array($this, '_exceptionHandler'));
     Loader::registerNamespace('FW', dirname(__FILE__) . DIRECTORY_SEPARATOR);
     Loader::registerAutoLoad();
     $this->config = Config::getInstance();
     if ($this->config->getConfigFolder() == null) {
         $this->setConfigFolder('../config');
     }
 }
Esempio n. 2
0
 public function setConfigFolder($configFolder)
 {
     if (!$configFolder) {
         throw new \Exception('Empty config folder path:');
     }
     $_configFolder = realpath($configFolder);
     if ($_configFolder != FALSE && is_dir($_configFolder) && is_readable($_configFolder)) {
         $this->_configArray = array();
         $this->_configFolder = $_configFolder . DIRECTORY_SEPARATOR;
         $ns = $this->app['namespaces'];
         if (is_array($ns)) {
             Loader::registerNamespaces($ns);
         }
     } else {
         throw new \Exception('Config directory read error:' . $configFolder);
     }
 }