From 7a728e107ca20c98cacea406ab555d3d12605caf Mon Sep 17 00:00:00 2001 From: emkael Date: Mon, 25 Apr 2016 12:20:45 +0200 Subject: * BaseUrl derivation from BasePath separated to a trait, as it's about to become useful --- app/php/web/AssetManager.php | 24 +++--------------------- app/php/web/BaseUrlDerivedFromBasePath.php | 29 +++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 21 deletions(-) create mode 100644 app/php/web/BaseUrlDerivedFromBasePath.php (limited to 'app') 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 @@ 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 @@ +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); + } + +} + +?> -- cgit v1.2.3