summaryrefslogtreecommitdiff
path: root/app/php/components/AssetManager.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/php/components/AssetManager.php')
-rw-r--r--app/php/components/AssetManager.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/php/components/AssetManager.php b/app/php/components/AssetManager.php
new file mode 100644
index 0000000..1094917
--- /dev/null
+++ b/app/php/components/AssetManager.php
@@ -0,0 +1,29 @@
+<?php
+
+class AssetManager extends TAssetManager {
+
+ public function init($config) {
+ if ($this->BaseUrl === 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);
+ }
+
+}
+
+?>