diff options
Diffstat (limited to 'app/php/web/BaseUrlDerivedFromBasePath.php')
-rw-r--r-- | app/php/web/BaseUrlDerivedFromBasePath.php | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/app/php/web/BaseUrlDerivedFromBasePath.php b/app/php/web/BaseUrlDerivedFromBasePath.php deleted file mode 100644 index 2da277f..0000000 --- a/app/php/web/BaseUrlDerivedFromBasePath.php +++ /dev/null @@ -1,29 +0,0 @@ -<?php - -trait BaseUrlDerivedFromBasePath { - - public function init($config) { - if ($this->BaseUrl === NULL && $this->BasePath !== NULL) { - $appWebPath = preg_replace( - '#' . $this->Application->Request->ApplicationUrl . '$#', - '', - $this->Application->Request->ApplicationFilePath - ); - $appBaseUrl = preg_replace( - '#^' . $appWebPath . '#', - '', - dirname($this->Application->Request->ApplicationFilePath) - ); - $this->BaseUrl = $appBaseUrl - . preg_replace( - '#^' . Prado::getPathOfNamespace('Web') . '#', - '', - $this->BasePath - ); - } - parent::init($config); - } - -} - -?> |