OXID eShop CE  4.9.6
 All Classes Files Functions Variables Pages
oxwtagcloud.php
Go to the documentation of this file.
1 <?php
2 
7 class oxwTagCloud extends oxWidget
8 {
9 
15  protected $_sThisTemplate = 'widget/sidebar/tags.tpl';
16 
22  public function displayInBox()
23  {
24  return (bool) $this->getViewParameter("blShowBox");
25  }
26 
32  public function getTagCloudManager()
33  {
34  $oTagList = oxNew("oxTagList");
35  //$oTagList->loadList();
36  $oTagCloud = oxNew("oxTagCloud");
37  $oTagCloud->setTagList($oTagList);
38 
39  return $oTagCloud;
40  }
41 
47  public function isMoreTagsVisible()
48  {
49  return true;
50  }
51 }