コード例 #1
1
 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);
     }
 }
コード例 #2
0
ファイル: Noticias.php プロジェクト: anavarretev/surforce-cms
 public static function getNoticia($id)
 {
     $noticias = new Noticias();
     return $noticias->fetchRow("id = '{$id}'");
 }