]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/local_lib/HTML_Titulares.php
- Agregué la imagen que indica la reducción horaria en el servicio de bandas.
[mecon/intranet.git] / sistema / local_lib / HTML_Titulares.php
index 03d2b1d66abba71b706934eb0380fa7a189491e3..1de656c10cdcc94712d3707c09a0a2e51fef50ba 100644 (file)
@@ -30,6 +30,7 @@
 require_once '../../lib/noticia.php';
 require_once '../local_lib/HTML_Noticia.php';
 require_once '../../lib/mecondavdb.php';
 require_once '../../lib/noticia.php';
 require_once '../local_lib/HTML_Noticia.php';
 require_once '../../lib/mecondavdb.php';
+require_once 'AI/GrupoSecciones.php';
 
 // +X2C includes
 require_once 'HTML/Table.php';
 
 // +X2C includes
 require_once 'HTML/Table.php';
@@ -65,6 +66,7 @@ class HTML_Titulares extends HTML_Table {
     function HTML_Titulares($grupo_secciones = null, $antiguedad = null) // ~X2C
     {
       parent::HTML_Table(array('width'=>'600', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
     function HTML_Titulares($grupo_secciones = null, $antiguedad = null) // ~X2C
     {
       parent::HTML_Table(array('width'=>'600', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
+      $db2 = DB::Connect('mysql://intranet:intranet@bal747f/intranet');//FIXME
       $db = MEconDAVDB::Connect();
       $hoy = new Date();
       $fecha_nuevo  = $hoy->format('%Y-%m-%d');
       $db = MEconDAVDB::Connect();
       $hoy = new Date();
       $fecha_nuevo  = $hoy->format('%Y-%m-%d');
@@ -74,6 +76,13 @@ class HTML_Titulares extends HTML_Table {
                 WHERE Articles.article_publication_state_id =
                        ArticlePublicationStates.article_publication_state_id
                 AND ArticlePublicationStates.publication_state_id=5 ";
                 WHERE Articles.article_publication_state_id =
                        ArticlePublicationStates.article_publication_state_id
                 AND ArticlePublicationStates.publication_state_id=5 ";
+      if(!is_null($grupo_secciones))
+      {
+        $gs = new AI_GrupoSecciones($grupo_secciones);
+       $gs->cargar($db2);
+       if(count($gs->secciones) > 0)
+           $query .= 'AND Articles.section_id IN('.implode(',', $gs->secciones).') ';
+      }
       if(!is_null($antiguedad))
       {
         $hoy->subtractSeconds(60*60*24*$antiguedad);
       if(!is_null($antiguedad))
       {
         $hoy->subtractSeconds(60*60*24*$antiguedad);
@@ -82,6 +91,7 @@ class HTML_Titulares extends HTML_Table {
       }
       $query .=  "ORDER BY Articles.publication_date desc";
       $result = $db->query($query);
       }
       $query .=  "ORDER BY Articles.publication_date desc";
       $result = $db->query($query);
+      $this->numero_noticias = $result->numRows();//FIXME no documentado
       if(DB::isError($result))
          die($result->getMessage("query mal hecho"));
       $ht1 = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
       if(DB::isError($result))
          die($result->getMessage("query mal hecho"));
       $ht1 = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
@@ -90,7 +100,16 @@ class HTML_Titulares extends HTML_Table {
       while($row = $result->fetchRow())
       {
           $n = new noticia($row[0]);
       while($row = $result->fetchRow())
       {
           $n = new noticia($row[0]);
+         if(!isset($this->primera_noticia)) $this->primera_noticia = $n;
+         if(!is_null($grupo_secciones)) $n->seccion = null;
           $not = new HTML_Noticia($n);
           $not = new HTML_Noticia($n);
+         $not->setLink("una_noticia.php?numero=$row[0]");
+         if(is_null($grupo_secciones))
+         {
+         //$n->getIdSeccion();
+           $not->setVerMas("noticias?grupo=".
+                           AI_GrupoSecciones::getGrupo($n->getIdSeccion(), $db2));
+         }
           if($row[1] == 'NUEVA')
               $not->setNuevo(true);
           if($impar)
           if($row[1] == 'NUEVA')
               $not->setNuevo(true);
           if($impar)
@@ -111,5 +130,16 @@ class HTML_Titulares extends HTML_Table {
     }
     // -X2C
 
     }
     // -X2C
 
+    // +X2C Operation 196
+    /**
+     * @return void
+     * @access public
+     */
+    function getCSS() // ~X2C
+    {
+        return "css/noticias.css";
+    }
+    // -X2C
+
 } // -X2C Class :HTML_Titulares
 } // -X2C Class :HTML_Titulares
-?>
\ No newline at end of file
+?>