Exemplo n.º 1
0
 /** Display the roman numismatics pages
  * @access public
  * @return void
  */
 public function romannumismaticsAction()
 {
     $form = new RomanNumismaticSearchForm();
     $this->view->formRoman = $form;
     if ($this->getRequest()->isPost() && $form->isValid($this->_request->getPost())) {
         if ($form->isValid($form->getValues())) {
             $this->process($form->getValues());
         } else {
             $form->populate($form->getValues());
         }
     }
 }
Exemplo n.º 2
0
 /** Display the roman numismatics pages
  */
 public function romannumismaticsAction()
 {
     $form = new RomanNumismaticSearchForm();
     $this->view->formRoman = $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());
         }
     }
 }