Beispiel #1
0
 public function treatAction()
 {
     $categoryMapper = new CategoryMapper();
     $faqMapper = new FaqMapper();
     if ($this->getRequest()->getParam('id')) {
         $this->getLayout()->getAdminHmenu()->add($this->getTranslator()->trans('menuFaqs'), array('action' => 'index'))->add($this->getTranslator()->trans('edit'), array('action' => 'treat'));
         $this->getView()->set('faq', $faqMapper->getFaqById($this->getRequest()->getParam('id')));
     } else {
         $this->getLayout()->getAdminHmenu()->add($this->getTranslator()->trans('menuFaqs'), array('action' => 'index'))->add($this->getTranslator()->trans('add'), array('action' => 'treat'));
     }
     if ($this->getRequest()->isPost()) {
         $model = new FaqModel();
         if ($this->getRequest()->getParam('id')) {
             $model->setId($this->getRequest()->getParam('id'));
         }
         $question = $this->getRequest()->getPost('question');
         $answer = $this->getRequest()->getPost('answer');
         if (empty($question)) {
             $this->addMessage('missingQuestion', 'danger');
         } elseif (empty($answer)) {
             $this->addMessage('missingAnswer', 'danger');
         } else {
             $model->setQuestion($question);
             $model->setAnswer($answer);
             $model->setCatId($this->getRequest()->getPost('catId'));
             $faqMapper->save($model);
             $this->addMessage('saveSuccess');
             $this->redirect(array('action' => 'index'));
         }
     }
     $this->getView()->set('cats', $categoryMapper->getCategories());
 }
Beispiel #2
0
 public function showAction()
 {
     $categoryMapper = new CategoryMapper();
     $faqMapper = new FaqMapper();
     $faq = $faqMapper->getFaqById($this->getRequest()->getParam('id'));
     $category = $categoryMapper->getCategoryById($faq->getCatId());
     $this->getLayout()->getHmenu()->add($this->getTranslator()->trans('menuFaqs'), array('action' => 'index'))->add($category->getTitle(), array('action' => 'index', 'catId' => $category->getId()))->add($faq->getQuestion(), array('action' => 'show', 'id' => $faq->getId()));
     $this->getView()->set('faq', $faqMapper->getFaqById($this->getRequest()->getParam('id')));
 }
Beispiel #3
0
 public function delCatAction()
 {
     $faqMapper = new FaqMapper();
     $countFaqs = count($faqMapper->getFaqs(array('cat_id' => $this->getRequest()->getParam('id'))));
     if ($countFaqs == 0) {
         if ($this->getRequest()->isSecure()) {
             $categoryMapper = new CategoryMapper();
             $categoryMapper->delete($this->getRequest()->getParam('id'));
             $this->addMessage('deleteSuccess');
             $this->redirect(array('action' => 'index'));
         }
     } else {
         $this->addMessage('deleteFailed', 'danger');
         $this->redirect(array('action' => 'index'));
     }
 }