oxwvendorlist.php

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