BoxTopNav.php 469 Bytes
<?php
class Web_View_Helper_BoxTopNav extends Zend_View_Helper_Abstract {

	/**
	 * @var Zend_View_Interface
	 */
	public $view;

	/**
	 *
	 */
	public function BoxTopNav(array $nav, $type = '') {
		$this->view->navigation = $nav;
		$this->view->type = $type;
		return $this->view->render('box/BoxTopNav.phtml');
	}

	/**
	 * Sets the view field
	 * @param $view Zend_View_Interface
	 */
	public function setView(Zend_View_Interface $view) {
		$this->view = $view;
	}
}