From 6a92f398c8396f54e293cc021f0e1a98d4650ca2 Mon Sep 17 00:00:00 2001 From: xue <> Date: Wed, 30 Aug 2006 11:44:59 +0000 Subject: fixed #348. --- framework/Web/UI/WebControls/THead.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'framework') diff --git a/framework/Web/UI/WebControls/THead.php b/framework/Web/UI/WebControls/THead.php index 5c91002b..a803d484 100644 --- a/framework/Web/UI/WebControls/THead.php +++ b/framework/Web/UI/WebControls/THead.php @@ -112,6 +112,22 @@ class THead extends TControl $this->setViewState('BaseUrl',$url,''); } + /** + * @return string the URL for the shortcut icon of the page. Defaults to ''. + */ + public function getShortcutIcon() + { + return $this->getViewState('ShortcutIcon',''); + } + + /** + * @param string the URL for the shortcut icon of the page. + */ + public function setShortcutIcon($url) + { + $this->setViewState('ShortcutIcon',$url,''); + } + /** * @return TMetaTagCollection meta tag collection */ @@ -136,6 +152,9 @@ class THead extends TControl $writer->write("\n".THttpUtility::htmlEncode($title)."\n"); if(($baseUrl=$this->getBaseUrl())!=='') $writer->write('\n"); + if(($icon=$this->getShortcutIcon())!=='') + $writer->write('\n"); + if(($metaTags=$this->getMetaTags())!==null) { foreach($metaTags as $metaTag) -- cgit v1.2.3