コード例 #1
0
 public function homeAction()
 {
     $this->view->aboutMe = $this->_contacts->getAboutMeByID();
     $this->view->whatIDo = $this->_contacts->getWhatIDoByID();
     $this->view->articles = $this->_articles->getAllArticles();
     $this->view->contacts = $this->_contacts->getContactsByID();
     $this->view->serviceCategories = $this->_serviceCategories->getAllServiceCategories();
     $this->view->services = $this->_services->getAllServices();
     $this->view->testimonials = $this->_testimonials->getAllTestimonials();
     $this->view->footer = $this->_contacts->getFooterByID();
 }
コード例 #2
0
 public function footerAction()
 {
     $form = new Admin_Form_FooterForm();
     $footer = $this->_contacts->getFooterByID();
     if ($this->_request->isPost()) {
         $formData = $this->_request->getPost();
         if ($form->isValid($formData)) {
             // update
             $this->_contacts->updateFooter($formData);
         } else {
             $form->populate($formData);
         }
     } else {
         $data = $footer->toArray();
         $form->populate($data);
     }
     $this->view->form = $form;
 }