OXID eShop CE  4.8.12
 All Classes Files Functions Variables Pages
oxwtagcloud.php
Go to the documentation of this file.
1 <?php
2 
7 class oxwTagCloud extends oxWidget
8 {
13  protected $_sThisTemplate = 'widget/sidebar/tags.tpl';
14 
20  public function displayInBox()
21  {
22  return (bool) $this->getViewParameter( "blShowBox" );
23  }
24 
30  public function getTagCloudManager()
31  {
32  $oTagList = oxNew( "oxtaglist" );
33  $oTagCloud = oxNew( "oxTagCloud" );
34  $oTagCloud->setTagList($oTagList);
35  return $oTagCloud;
36  }
37 
43  public function isMoreTagsVisible()
44  {
45  return true;
46  }
47 }