]> git.llucax.com Git - mecon/intranet.git/blobdiff - lib/noticia.php
corrijo noticia para que la fecha sea un Date
[mecon/intranet.git] / lib / noticia.php
index 0580e8de688b6ec944572c914f760f8dacd86ab9..96ba6b25411a8aa1beda412de3119f2314a10f71 100644 (file)
@@ -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,9 +53,75 @@ class noticia {
      */
     function noticia($noticia) // ~X2C
     {
-        trigger_error('Not implemented!', E_USER_WARNING);
+        $this->noticia = $noticia;
+        $db = MEconDAVDB::Connect();
+       $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->texto = $row[3];
+       $this->fecha = new Date($row[4]);
+    }
+    // -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 getAbstracto() // ~X2C
+    {
+        return $this->abstracto;
+    }
+    // -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 Class :noticia
-?>
\ No newline at end of file
+?>