BoxRecommend.php
611 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
/**
*
* @author denisdou
* @version
*/
/**
* BoxMenu helper
*
* @uses viewHelper Zend_View_Helper
*/
class Zend_View_Helper_BoxRecommend extends Zend_View_Helper_Abstract {
/**
* @var Zend_View_Interface
*/
public $view;
/**
*
*/
public function BoxRecommend($sort, $url = '/search/index/recommend') {
$this->view->sort_id = $sort;
$this->view->url = $url;
return $this->view->render('box/BoxRecommend.phtml');
}
/**
* Sets the view field
* @param $view Zend_View_Interface
*/
public function setView(Zend_View_Interface $view) {
$this->view = $view;
}
}