BoxTopBrandsNav.php
446 Bytes
<?php
class Web_View_Helper_BoxTopBrandsNav extends Zend_View_Helper_Abstract {
/**
* @var Zend_View_Interface
*/
public $view;
/**
*
*/
public function BoxTopBrandsNav(array $nav) {
$this->view->navigation = $nav;
return $this->view->render('box/BoxTopBrandsNav.phtml');
}
/**
* Sets the view field
* @param $view Zend_View_Interface
*/
public function setView(Zend_View_Interface $view) {
$this->view = $view;
}
}