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