X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/ab77106d0d0e5ffcef48bc563360a6332cab1d9d..707e1370e56a9a9536a81aab72b530c48e3d361e:/lib/noticia.php diff --git a/lib/noticia.php b/lib/noticia.php index 88f9f08..96ba6b2 100644 --- a/lib/noticia.php +++ b/lib/noticia.php @@ -28,6 +28,7 @@ // require_once 'mecondavdb.php'; +require_once 'Date.php'; // +X2C Class 161 :noticia @@ -52,9 +53,9 @@ class noticia { */ function noticia($noticia) // ~X2C { - $this->noticia; + $this->noticia = $noticia; $db = MEconDAVDB::Connect(); - $query = "SELECT headline, title, abstract, article + $query = "SELECT headline, title, abstract, article, publication_date FROM Articles WHERE Article_id = $noticia"; $result = $db->query($query); @@ -63,6 +64,7 @@ class noticia { $this->titulo = $row[1]; $this->abstracto = $row[2]; $this->texto = $row[3]; + $this->fecha = new Date($row[4]); } // -X2C @@ -110,5 +112,16 @@ class noticia { } // -X2C + // +X2C Operation 186 + /** + * @return string + * @access public + */ + function getFecha() // ~X2C + { + return $this->fecha; + } + // -X2C + } // -X2C Class :noticia ?>