view->postsByMonthYear = $blogposts->findByMonth(); } public function filterAction() { $params = $this->_getAllParams(); $blogposts = new ModelBlogPost(); if (array_key_exists('date', $params)) { $this->view->posts = $blogposts->findByDate($params['date'], '%Y-%MM'); } else if (array_key_exists('tag', $params)) { $this->view->posts = $blogposts->findByTag($params['tag']); } } }