OXID eShop CE  4.9.7
 All Classes Files Functions Variables Pages
oxwvendorlist.php
Go to the documentation of this file.
1 <?php
2 
7 class oxwVendorList extends oxWidget
8 {
9 
15  protected $_sThisTemplate = 'widget/footer/vendorlist.tpl';
16 
22  public function getVendorlist()
23  {
24  if ($this->_aVendorlist === null) {
25  $oVendorTree = oxNew('oxvendorlist');
26  $oVendorTree->buildVendorTree('vendorlist', null, $this->getConfig()->getShopHomeURL());
27  $this->_aVendorlist = $oVendorTree;
28  }
29 
30  return $this->_aVendorlist;
31  }
32 }