Example #1
0
File: N2N.php Project: n2n/n2n
 /**
  * @param string $publicDirPath
  * @param string $varDirPath
  * @param array $moduleDirPaths
  */
 public static function initialize(string $publicDirPath, string $varDirPath, N2nCache $n2nCache, ModuleFactory $moduleFactory = null)
 {
     mb_internal_encoding(self::CHARSET);
     // 		ini_set('default_charset', self::CHARSET);
     self::$exceptionHandler = new ExceptionHandler(N2N::isDevelopmentModeOn());
     register_shutdown_function(array('n2n\\core\\N2N', 'shutdown'));
     self::$n2n = new N2N(new FsPath(IoUtils::realpath($publicDirPath)), new FsPath(IoUtils::realpath($varDirPath)));
     if ($moduleFactory === null) {
         $moduleFactory = new EtcModuleFactory();
     }
     self::$n2n->initModules($moduleFactory);
     self::$n2n->init($n2nCache);
     self::$initialized = true;
     self::initLogging(self::$n2n);
     self::$exceptionHandler->checkForStartupErrors();
 }