oxwtagcloud.php

Go to the documentation of this file.
00001 <?php
00002 
00007 class oxwTagCloud extends oxWidget
00008 {
00009 
00015     protected $_sThisTemplate = 'widget/sidebar/tags.tpl';
00016 
00022     public function displayInBox()
00023     {
00024         return (bool) $this->getViewParameter("blShowBox");
00025     }
00026 
00032     public function getTagCloudManager()
00033     {
00034         $oTagList = oxNew("oxTagList");
00035         //$oTagList->loadList();
00036         $oTagCloud = oxNew("oxTagCloud");
00037         $oTagCloud->setTagList($oTagList);
00038 
00039         return $oTagCloud;
00040     }
00041 
00047     public function isMoreTagsVisible()
00048     {
00049         return true;
00050     }
00051 }