OXID eShop CE  4.10.7
 All Classes Namespaces Files Functions Variables Pages
oxwtagcloud.php
Go to the documentation of this file.
1 <?php
2 
9 class oxwTagCloud extends oxWidget
10 {
11 
17  protected $_sThisTemplate = 'widget/sidebar/tags.tpl';
18 
24  public function displayInBox()
25  {
26  return (bool) $this->getViewParameter("blShowBox");
27  }
28 
34  public function getTagCloudManager()
35  {
36  $oTagList = oxNew("oxTagList");
37  //$oTagList->loadList();
38  $oTagCloud = oxNew("oxTagCloud");
39  $oTagCloud->setTagList($oTagList);
40 
41  return $oTagCloud;
42  }
43 
49  public function isMoreTagsVisible()
50  {
51  return true;
52  }
53 }