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 
00022     public function render()
00023     {
00024         parent::render();
00025 
00026         return $this->_sThisTemplate;
00027     }
00028 
00034     public function displayInBox()
00035     {
00036         return (bool) $this->getViewParameter( "blShowBox" );
00037     }
00038 
00044     public function getTagCloudManager()
00045     {
00046         return oxNew( "oxTagCloud" );
00047     }
00048 
00054     public function isMoreTagsVisible()
00055     {
00056         return true;
00057     }
00058 }