]> git.llucax.com Git - mecon/intranet.git/blobdiff - lib/noticia.php
(no commit message)
[mecon/intranet.git] / lib / noticia.php
index 6a07def9b9dbd6d102b14bee46881fea19561db3..50e89704f530963bd0b9c5f64f852490b0ddb0f1 100644 (file)
@@ -28,6 +28,7 @@
 //
 
 require_once 'mecondavdb.php';
+require_once 'Date.php';
 
 
 // +X2C Class 161 :noticia
@@ -52,17 +53,18 @@ 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);
        $row = $result->fetchRow();
-       $this->titulo2 = $row[0];
-       $this->titulo = $row[1];
-       $this->abstracto = $row[2];
+       $this->titulo = $row[0];
+       $this->titulo2 = $row[1];
+       $this->sintesis = $row[2];
        $this->texto = $row[3];
+       $this->fecha = new Date($row[4]);
     }
     // -X2C
 
@@ -93,9 +95,9 @@ class noticia {
      * @return string
      * @access public
      */
-    function getAbstracto() // ~X2C
+    function getSintesis() // ~X2C
     {
-        return $this->abstracto;
+        return $this->sintesis;
     }
     // -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
-?>
\ No newline at end of file
+?>