BoxGender.php
510 Bytes
<?php
/**
* BoxColor helper
*
* @uses viewHelper Zend_View_Helper
*/
class Web_View_Helper_BoxGender extends Zend_View_Helper_Abstract {
/**
* @var Zend_View_Interface
*/
public $view;
/**
*
*/
public function BoxGender() {
return $this->view->render('box/gender.phtml');
}
/**
* Sets the view field
* @param $view Zend_View_Interface
*/
public function setView(Zend_View_Interface $view) {
$this->view = $view;
}
}