Go to the documentation of this file.00001 <?php
00002
00007 class oxwVendorList extends oxWidget
00008 {
00014 protected $_sThisTemplate = 'widget/footer/vendorlist.tpl';
00015
00021 public function getVendorlist()
00022 {
00023 if ( $this->_aVendorlist === null ) {
00024 $oVendorTree = oxNew( 'oxvendorlist' );
00025 $oVendorTree->buildVendorTree( 'vendorlist', null, $this->getConfig()->getShopHomeURL() );
00026 $this->_aVendorlist = $oVendorTree;
00027 }
00028 return $this->_aVendorlist;
00029 }
00030
00031 }