Exemple #1
0
 public static function getFaq($id)
 {
     $faq = new Faqs();
     return $faq->fetchRow("id = '{$id}'");
 }
 public function verAction()
 {
     $this->view->subtitle = $this->info->sitio->faqs->ver->titulo;
     $faq = new Faqs();
     $id = (int) $this->_request->getParam('id', 0);
     if ($id > 0) {
         $this->view->faq = $faq->fetchRow('id=' . $id);
     }
     $this->render();
 }