]> git.llucax.com Git - mecon/intranet.git/blobdiff - lib/noticia.php
Arreglos varios de las noticias
[mecon/intranet.git] / lib / noticia.php
index 50e89704f530963bd0b9c5f64f852490b0ddb0f1..fc41b8037fabc3cc60d614c3520916ea585e9bcf 100644 (file)
@@ -55,9 +55,11 @@ class noticia {
     {
         $this->noticia = $noticia;
         $db = MEconDAVDB::Connect();
     {
         $this->noticia = $noticia;
         $db = MEconDAVDB::Connect();
-       $query = "SELECT headline, title, abstract, article, publication_date
-                 FROM Articles
-                 WHERE Article_id = $noticia";
+       $query = "SELECT A.headline, A.title, A.abstract, A.article,
+                        A.publication_date, S.description, S.section_id
+                 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];
        $result = $db->query($query);
        $row = $result->fetchRow();
        $this->titulo = $row[0];
@@ -65,6 +67,8 @@ class noticia {
        $this->sintesis = $row[2];
        $this->texto = $row[3];
        $this->fecha = new Date($row[4]);
        $this->sintesis = $row[2];
        $this->texto = $row[3];
        $this->fecha = new Date($row[4]);
+       $this->seccion = $row[5];
+       $this->id_seccion = $row[6];
     }
     // -X2C
 
     }
     // -X2C
 
@@ -123,5 +127,64 @@ class noticia {
     }
     // -X2C
 
     }
     // -X2C
 
+    // +X2C Operation 191
+    /**
+     * @return void
+     * @access public
+     */
+    function getSeccion() // ~X2C
+    {
+        return $this->seccion;
+    }
+    // -X2C
+
+    // +X2C Operation 197
+    /**
+     * @return void
+     * @access public
+     */
+    function getidSeccion() // ~X2C
+    {
+        return $this->id_seccion;
+    }
+    // -X2C
+
+    // +X2C Operation 199
+    /**
+     * @return void
+     * @access public
+     */
+    function getLinks() // ~X2C
+    {
+        $db = MEconDAVDB::Connect();
+        $sql = "SELECT R.link_id, A.headline
+                FROM Relations R, Articles A
+                WHERE R.link_id = A.article_id
+                AND   R.article_id = ".$this->noticia;
+        $result =& $db->query($sql);
+        $links = array();
+        while($row =& $result->fetchRow())
+          $links[] = array('numero'=>$row[0], 'texto'=>$row[1]);
+        return $links;
+    }
+    // -X2C
+
+    // +X2C Operation 200
+    /**
+     * @return void
+     * @access public
+     */
+    function getArchivos() // ~X2C
+    {
+        $db = MEconDAVDB::Connect();
+        $sql = "SELECT file_for_article_id, caption FROM FilesForArticle WHERE article_id = ".$this->noticia;
+        $result =& $db->query($sql);
+        $archivos = array();
+        while($row =& $result->fetchRow())
+          $archivos[] = array('numero'=>$row[0], 'texto'=>$row[1]);
+        return $archivos;
+    }
+    // -X2C
+
 } // -X2C Class :noticia
 ?>
 } // -X2C Class :noticia
 ?>