예제 #1
0
 /**
  * ApplicationPath constructor.
  *
  * @param string $applicationMode
  */
 public function __construct($applicationMode)
 {
     parent::__construct($applicationMode);
     $this->installerWebRoot = $this->webRoot;
     $this->webRoot = substr($this->webRoot !== '/' ? $this->webRoot . '/' : '/', 0, -14);
     $this->installerAppDir = realpath($this->appDir . '../installation') . '/Installer/';
     $this->installerModulesDir = $this->installerAppDir . 'Modules/';
     $this->installerClassesDir = $this->installerAppDir . 'Core/';
     $this->designRootPathInternal = ACP3_ROOT_DIR . 'installation/design/';
 }