diff options
-rw-r--r-- | app/php/web/AssetManager.php | 24 | ||||
-rw-r--r-- | app/php/web/BaseUrlDerivedFromBasePath.php | 29 |
2 files changed, 32 insertions, 21 deletions
diff --git a/app/php/web/AssetManager.php b/app/php/web/AssetManager.php index 72d8ef1..2677585 100644 --- a/app/php/web/AssetManager.php +++ b/app/php/web/AssetManager.php @@ -1,28 +1,10 @@ <?php +Prado::using('Application.web.BaseUrlDerivedFromBasePath'); + class AssetManager extends TAssetManager { - 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); - } + use BaseUrlDerivedFromBasePath; } diff --git a/app/php/web/BaseUrlDerivedFromBasePath.php b/app/php/web/BaseUrlDerivedFromBasePath.php new file mode 100644 index 0000000..2da277f --- /dev/null +++ b/app/php/web/BaseUrlDerivedFromBasePath.php @@ -0,0 +1,29 @@ +<?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); + } + +} + +?> |