summaryrefslogtreecommitdiff
path: root/app/php/web/BaseUrlDerivedFromBasePath.php
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-04-25 12:20:45 +0200
committeremkael <emkael@tlen.pl>2016-04-25 12:20:45 +0200
commit7a728e107ca20c98cacea406ab555d3d12605caf (patch)
tree2a75b588d3950c0ccee3856679aaabcbb4a36b75 /app/php/web/BaseUrlDerivedFromBasePath.php
parent37ceed32d8486c8e33cb6ce79ef6b7b4af03a64d (diff)
* BaseUrl derivation from BasePath separated to a trait, as it's about to become useful
Diffstat (limited to 'app/php/web/BaseUrlDerivedFromBasePath.php')
-rw-r--r--app/php/web/BaseUrlDerivedFromBasePath.php29
1 files changed, 29 insertions, 0 deletions
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);
+ }
+
+}
+
+?>