]> git.llucax.com Git - mecon/intranet.git/blobdiff - lib/noticia.php
Extiendo noticia para que obtenga las imagenes, Corrijo la enie de Login
[mecon/intranet.git] / lib / noticia.php
index bd92c7b5d54ff4f7f16d3f7d0f6f0cc4ff29a736..1f9a6656faf7a0ea93135c749d27e12661c36794 100644 (file)
@@ -143,11 +143,41 @@ class noticia {
      * @return void
      * @access public
      */
-    function getIdSeccion() // ~X2C
+    function getidSeccion() // ~X2C
     {
         return $this->id_seccion;
     }
     // -X2C
 
+    // +X2C Operation 199
+    /**
+     * @return void
+     * @access public
+     */
+    function getLinks() // ~X2C
+    {
+        $db = MEconDAVDB::Connect();
+        $sql = "SELECT link_id FROM Relations WHERE article_id = ".$this->noticia;
+        return $db->getCol($sql);
+    }
+    // -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->getRow())
+          $archivos[] = array('numero'=>$row[0], 'texto'=>$row[1]);
+        return $archivos;
+    }
+    // -X2C
+
 } // -X2C Class :noticia
 ?>