diff options
author | xue <> | 2006-02-17 04:28:06 +0000 |
---|---|---|
committer | xue <> | 2006-02-17 04:28:06 +0000 |
commit | ae1c1995b2fec431afe7cca23b2697e1bef17baf (patch) | |
tree | 43fb70539492615022e434435a70e35241a898f2 /framework/Web/UI/TClientScriptManager.php | |
parent | 31807816360c93080a6a0da55b858d708cd85c8b (diff) |
moved shortcut methods from TComponent to TControl.
Diffstat (limited to 'framework/Web/UI/TClientScriptManager.php')
-rw-r--r-- | framework/Web/UI/TClientScriptManager.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Web/UI/TClientScriptManager.php b/framework/Web/UI/TClientScriptManager.php index 1ea4175d..fd5a6eec 100644 --- a/framework/Web/UI/TClientScriptManager.php +++ b/framework/Web/UI/TClientScriptManager.php @@ -140,7 +140,7 @@ class TClientScriptManager extends TComponent $base = Prado::getFrameworkPath(); $clientScripts = self::SCRIPT_DIR; $file = "{$base}/{$clientScripts}/{$lib}.js"; - $this->publishFilePath($file); + Prado::getApplication()->getAssetManager()->publishFilePath($file); $this->_publishedScriptFiles[$lib] = true; } } @@ -159,7 +159,7 @@ class TClientScriptManager extends TComponent $base = Prado::getFrameworkPath(); $clientScripts = self::SCRIPT_DIR; $file = "{$base}/{$clientScripts}/{$scriptFile}"; - $url= $this->publishFilePath($file); + $url= Prado::getApplication()->getAssetManager()->publishFilePath($file); $this->_publishedScriptFiles[$scriptFile] = $url; return $url; } |