X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/a86f431a5340d5326500070cc17e47208c029ca1..eb86d04858357c87d5d7a7e3cb528ef24949b725:/lib/noticia.php?ds=sidebyside diff --git a/lib/noticia.php b/lib/noticia.php index 0580e8d..0b37c92 100644 --- a/lib/noticia.php +++ b/lib/noticia.php @@ -27,7 +27,8 @@ // $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $ // - +require_once 'mecondavdb.php'; +require_once 'Date.php'; // +X2C Class 161 :noticia @@ -52,7 +53,87 @@ class noticia { */ function noticia($noticia) // ~X2C { - trigger_error('Not implemented!', E_USER_WARNING); + $this->noticia = $noticia; + $db = MEconDAVDB::Connect(); + $query = "SELECT A.headline, A.title, A.abstract, A.article, + A.publication_date, S.description + FROM Articles A, Sections S + WHERE Article_id = $noticia + AND A.section_id = S.section_id"; + $result = $db->query($query); + $row = $result->fetchRow(); + $this->titulo = $row[0]; + $this->titulo2 = $row[1]; + $this->sintesis = $row[2]; + $this->texto = $row[3]; + $this->fecha = new Date($row[4]); + $this->seccion = $row[5]; + } + // -X2C + + // +X2C Operation 180 + /** + * @return string + * @access public + */ + function getTitulo() // ~X2C + { + return $this->titulo; + } + // -X2C + + // +X2C Operation 181 + /** + * @return string + * @access public + */ + function getTexto() // ~X2C + { + return $this->texto; + } + // -X2C + + // +X2C Operation 182 + /** + * @return string + * @access public + */ + function getSintesis() // ~X2C + { + return $this->sintesis; + } + // -X2C + + // +X2C Operation 183 + /** + * @return string + * @access public + */ + function getTitulo2() // ~X2C + { + return $this->titulo2; + } + // -X2C + + // +X2C Operation 186 + /** + * @return string + * @access public + */ + function getFecha() // ~X2C + { + return $this->fecha; + } + // -X2C + + // +X2C Operation 191 + /** + * @return void + * @access public + */ + function getSeccion() // ~X2C + { + return $this->seccion; } // -X2C