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/BaseUrlDerivedFromBasePath.php | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 app/php/web/BaseUrlDerivedFromBasePath.php (limited to 'app/php/web/BaseUrlDerivedFromBasePath.php') 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