00001 <?php 00002 00006 class Tags extends oxUBase 00007 { 00013 protected $_sThisTemplate = "tags.tpl"; 00014 00024 public function render() 00025 { 00026 parent::render(); 00027 00028 $this->_aViewData['tagCloud'] = $this->getTagCloud(); 00029 $this->_aViewData['blMoreTags'] = $this->isMoreTagsVisible(); 00030 $this->_aViewData['oView'] = $this; 00031 00032 return $this->_sThisTemplate; 00033 } 00034 00040 public function getTagCloud() 00041 { 00042 $oTagHandler = oxNew('oxTagCloud'); 00043 return $oTagHandler->getTagCloud(null, true); 00044 } 00045 00051 public function isMoreTagsVisible() 00052 { 00053 return false; 00054 } 00055 00061 public function getTitleSuffix() 00062 { 00063 } 00064 }