]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/local_lib/HTML_Titulares.php
Arreglo de Grupo de Noticias
[mecon/intranet.git] / sistema / local_lib / HTML_Titulares.php
index 03d53a0b68c3bcdbf372d67e1dfaeb79a856a5b0..7707d02dda6797bca66417b4337d3df60060c718 100644 (file)
@@ -66,23 +66,33 @@ 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'));
+      $db2 = DB::Connect('mysql://intranet:intranet@bal747f/intranet');//FIXME
       $db = MEconDAVDB::Connect();
       $hoy = new Date();
       $fecha_nuevo  = $hoy->format('%Y-%m-%d');
       $query = "SELECT Articles.article_id,
                         IF(Articles.publication_date > '$fecha_nuevo', 'NUEVA', null)
                  FROM Articles, ArticlePublicationStates
-                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))
       {
-        $db2 = DB::Connect('mysql://intranet:intranet@bal747f/intranet');//FIXME
         $gs = new AI_GrupoSecciones($grupo_secciones);
-       $gs->cargar($db2);
-       if(count($gs->secciones) > 0)
-           $query .= 'AND Articles.section_id IN('.implode(',', $gs->secciones).') ';
+       $gs->cargar($db2);
+           if(count($gs->secciones) > 0)
+               $query .= ' AND Articles.section_id IN('.implode(',', $gs->secciones).') ';
       }
+      
+      //FIXME Agregado provisorio para cargar por herramienta lo que no es noticia
+      else{
+        $gs = new AI_GrupoSecciones($grupo_secciones);
+        $gs->cargar($db2);
+        if(count($gs->secciones) > 0)
+          $query .= ' AND Articles.section_id NOT IN(53) ';
+      }
+      //FIXME Fin Agregado provisorio
+      
       if(!is_null($antiguedad))
       {
         $hoy->subtractSeconds(60*60*24*$antiguedad);
@@ -94,8 +104,8 @@ class HTML_Titulares extends HTML_Table {
       $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'));
-      $ht2 = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
+      $ht1 = new HTML_Table(array('width'=>'280', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
+      $ht2 = new HTML_Table(array('width'=>'280', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0'));
       $impar = true;
       while($row = $result->fetchRow())
       {
@@ -107,7 +117,8 @@ class HTML_Titulares extends HTML_Table {
          if(is_null($grupo_secciones))
          {
          //$n->getIdSeccion();
-           $not->setVerMas("noticias?grupo=TODO");//TODO
+           $not->setVerMas("noticias?grupo=".
+                           AI_GrupoSecciones::getGrupo($n->getIdSeccion(), $db2));
          }
           if($row[1] == 'NUEVA')
               $not->setNuevo(true);