Esempio n. 1
0
 /** Display the greek and roman provincial pages
  * @return void
  * @access public
  */
 public function greekromanAction()
 {
     $form = new GreekRomanSearchForm();
     $this->view->form = $form;
     if ($this->getRequest()->isPost() && $form->isValid($this->_request->getPost())) {
         if ($form->isValid($form->getValues())) {
             $this->process($form->getValues());
         } else {
             $form->populate($form->getValues());
         }
     }
 }
Esempio n. 2
0
 /** Display the greek and roman provincial pages
  */
 public function greekromanAction()
 {
     $form = new GreekRomanSearchForm();
     $this->view->form = $form;
     if ($this->getRequest()->isPost() && $form->isValid($_POST)) {
         if ($form->isValid($form->getValues())) {
             $params = array_filter($form->getValues());
             $params = $this->array_cleanup($params);
             $this->_flashMessenger->addMessage('Your search is complete');
             $this->_helper->Redirector->gotoSimple('results', 'search', 'database', $params);
         } else {
             $form->populate($this->_getAllParams());
         }
     }
 }