function verAction()
 {
     $this->view->subtitle = $this->info->sitio->noticias->ver->titulo;
     $noticia = new Noticias();
     $id = (int) $this->_request->getParam('id', 0);
     if ($id > 0) {
         $this->view->noticia = $noticia->fetchRow('id=' . $id);
     }
 }
Example #2
0
 public static function getNoticia($id)
 {
     $noticias = new Noticias();
     return $noticias->fetchRow("id = '{$id}'");
 }