Ejemplo n.º 1
0
 public function indexAction()
 {
     $Contacts = new Model_Contacts();
     $this->view->geral = $Contacts->getContacts();
     if (!$this->getRequest()->isPost()) {
         return;
     }
     $data = $this->getRequest()->getParams();
     $this->view->dataRow = $Contacts->add($data);
     $this->view->geral = $Contacts->getContacts();
 }