本文整理汇总了PHP中Model_Ad::getAdListAll方法的典型用法代码示例。如果您正苦于以下问题:PHP Model_Ad::getAdListAll方法的具体用法?PHP Model_Ad::getAdListAll怎么用?PHP Model_Ad::getAdListAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Model_Ad
的用法示例。
在下文中一共展示了Model_Ad::getAdListAll方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: listallAction
/**
* List all ads
*/
public function listallAction()
{
$this->view->userRole = $this->_helper->checkUserRole->check();
$model = new Model_Ad();
$ad_type = $this->view->ad_type = $this->_request->getParam('ad_type');
if ($ad_type == 'give') {
$this->view->page_title .= $this->view->translate('give') . ' ';
$type = 'give';
} elseif ($ad_type == 'want') {
$this->view->page_title .= $this->view->translate('want') . ' ';
$type = 'want';
} else {
//dont accept other values than give/want
$this->_helper->_flashMessenger->addMessage($this->view->translate('this url does not exist'));
$this->_redirect('/' . $this->lang . '/ad/listall/ad_type/give', array('code' => 301));
}
$status = $this->_request->getParam('status');
$f = new Zend_Filter();
$f->addFilter(new Zend_Filter_HtmlEntities());
$status = $f->filter($status);
if ($status) {
$this->view->page_title .= $this->view->translate($status) . ' ';
}
$this->view->ad = $model->getAdListAll($ad_type, $status);
$this->view->page_title .= $this->view->translate('All the ads') . ' ' . $this->view->translate('second hand and new');
//paginator
$page = $this->_getParam('page');
if ($page) {
$this->view->page_title .= ' ' . $this->view->translate('page') . ' ' . $page;
}
//add meta description to head
$this->view->metaDescription = $this->view->page_title . '. ' . $this->view->translate('nolotiro.org is a website where you can give away things you no longer want or no longer need to pick them up other people who may serve or be of much use.');
$paginator = Zend_Paginator::factory($this->view->ad);
$paginator->setDefaultScrollingStyle('Elastic');
$paginator->setItemCountPerPage(20);
$paginator->setCurrentPageNumber($page);
$this->view->paginator = $paginator;
}