BoxRecommendBrands.php
559 Bytes
<?php
class Web_View_Helper_BoxRecommendBrands extends Zend_View_Helper_Abstract {
/**
* @var Zend_View_Interface
*/
public $view;
/**
*
*/
public function BoxRecommendBrands($sort_id,$num = 8) {
$this->view->recommendBrands = QINOperations_Models_Recommendbrands_Client::getListBySortId($sort_id,$num);//0表示不限条数
return $this->view->render('box/BoxRecommendBrands.phtml');
}
/**
* Sets the view field
* @param $view Zend_View_Interface
*/
public function setView(Zend_View_Interface $view) {
$this->view = $view;
}
}