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); } }
public static function getNoticia($id) { $noticias = new Noticias(); return $noticias->fetchRow("id = '{$id}'"); }