From e9bfba959b6d655ed2eba71e4f2a618237d68698 Mon Sep 17 00:00:00 2001 From: xue <> Date: Thu, 16 Feb 2006 22:48:18 +0000 Subject: Modified asset manipulation APIs. --- framework/Web/UI/WebControls/TRatingList.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'framework/Web/UI/WebControls/TRatingList.php') diff --git a/framework/Web/UI/WebControls/TRatingList.php b/framework/Web/UI/WebControls/TRatingList.php index 6613c08b..3c5a9279 100644 --- a/framework/Web/UI/WebControls/TRatingList.php +++ b/framework/Web/UI/WebControls/TRatingList.php @@ -80,22 +80,22 @@ class TRatingList extends TRadioButtonList { $cs = $this->getPage()->getClientScript(); $style = $this->getRatingStyle()->getStyleSheet(); - $url = $this->getService()->getAsset($style); + $url = $this->publishFilePath($style); if(!$cs->isStyleSheetFileRegistered($style)) - $cs->registerStyleSheetFile($style, $url); + $cs->registerStyleSheetFile($style, $url); return $url; } - + protected function publishRatingListAssets() { $cs = $this->getPage()->getClientScript(); $assets = $this->getRatingStyle()->getAssets(); $list = array(); foreach($assets as $file) - $list[] = $this->getService()->getAsset($file); + $list[] = $this->publishFilePath($file); return $list; } - + /** * @param THtmlWriter writer */ @@ -146,7 +146,7 @@ abstract class TRatingListStyle } class TRatingListDefaultStyle extends TRatingListStyle -{ +{ public function __construct() { parent::__construct(); -- cgit v1.2.3