diff options
| author | emkael <emkael@tlen.pl> | 2016-04-23 00:53:14 +0200 |
|---|---|---|
| committer | emkael <emkael@tlen.pl> | 2016-04-23 00:53:14 +0200 |
| commit | 970da9fd7273827357100f89e5de33b55cf44d71 (patch) | |
| tree | 8ccb2267dceefdf7a02ea718b00a3cc470f8a9ef /app/php/web/AssetManager.php | |
| parent | dd3ce906c54d69df83214dc519a4d30658e99004 (diff) | |
* moving stuff around (general classes from components to web)
Diffstat (limited to 'app/php/web/AssetManager.php')
| -rw-r--r-- | app/php/web/AssetManager.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app/php/web/AssetManager.php b/app/php/web/AssetManager.php new file mode 100644 index 0000000..1094917 --- /dev/null +++ b/app/php/web/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); + } + +} + +?> |
