oxwtagcloud.php

Go to the documentation of this file.
00001 <?php
00002 
00007 class oxwTagCloud extends oxWidget
00008 {
00013     protected $_sThisTemplate = 'widget/sidebar/tags.tpl';
00014 
00020     public function displayInBox()
00021     {
00022         return (bool) $this->getViewParameter( "blShowBox" );
00023     }
00024 
00030     public function getTagCloudManager()
00031     {
00032         $oTagList = oxNew( "oxtaglist" );
00033         $oTagCloud = oxNew( "oxTagCloud" );
00034         $oTagCloud->setTagList($oTagList);
00035         return $oTagCloud;
00036     }
00037 
00043     public function isMoreTagsVisible()
00044     {
00045         return true;
00046     }
00047 }