]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/local_lib/HTML_Titulares.php
Agrego lo que faltaba definir de mmarre, mas algunas modificaciones que hacen mas...
[mecon/intranet.git] / sistema / local_lib / HTML_Titulares.php
index 9e4597bad002e1547d63e739e52db88df518cf37..bd3470ef67a8f712e9ba4e20c23e0e39f5d7d207 100644 (file)
@@ -2,16 +2,16 @@
 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
 // +--------------------------------------------------------------------+
 // |                      Ministerio de Economía                        |
 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
 // +--------------------------------------------------------------------+
 // |                      Ministerio de Economía                        |
-// |                             Intranet                              |
+// |                             Intranet                               |
 // +--------------------------------------------------------------------+
 // +--------------------------------------------------------------------+
-// | This file is part of Intranet.                                    |
+// | This file is part of Intranet.                                     |
 // |                                                                    |
 // |                                                                    |
-// | Intranet is free software; you can redistribute it and/or modify  |
+// | Intranet is free software; you can redistribute it and/or modify   |
 // | it under the terms of the GNU General Public License as published  |
 // | by the Free Software Foundation; either version 2 of the License,  |
 // | or (at your option) any later version.                             |
 // |                                                                    |
 // | it under the terms of the GNU General Public License as published  |
 // | by the Free Software Foundation; either version 2 of the License,  |
 // | or (at your option) any later version.                             |
 // |                                                                    |
-// | Intranet is distributed in the hope that it will be useful, but   |
+// | Intranet is distributed in the hope that it will be useful, but    |
 // | WITHOUT ANY WARRANTY; without even the implied warranty of         |
 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
 // | General Public License for more details.                           |
 // | WITHOUT ANY WARRANTY; without even the implied warranty of         |
 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
 // | General Public License for more details.                           |
 // | Autor:  Gonzalo Merayo <gmeray@mecon.gov.ar>                       |
 // +--------------------------------------------------------------------+
 //
 // | Autor:  Gonzalo Merayo <gmeray@mecon.gov.ar>                       |
 // +--------------------------------------------------------------------+
 //
-// $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $
+// $Id$
 //
 
 //
 
-require_once '../../lib/noticia.php';
-require_once '../local_lib/HTML_Noticia.php';
-require_once '../../lib/mecondavdb.php';
+require_once 'noticia.php';
+require_once 'HTML_Noticia.php';
+require_once 'intranetdb.php';
 require_once 'AI/GrupoSecciones.php';
 
 // +X2C includes
 require_once 'AI/GrupoSecciones.php';
 
 // +X2C includes
@@ -66,23 +66,28 @@ 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'));
-      $db = MEconDAVDB::Connect();
+      $db = IntranetDB::Connect();
       $hoy = new Date();
       $fecha_nuevo  = $hoy->format('%Y-%m-%d');
       $query = "SELECT Articles.article_id,
                         IF(Articles.publication_date > '$fecha_nuevo', 'NUEVA', null)
       $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 ";
+                 FROM MEconDAV.Articles, MEconDAV.ArticlePublicationStates
+                        WHERE Articles.article_publication_state_id =
+                           ArticlePublicationStates.article_publication_state_id
+                        AND ArticlePublicationStates.publication_state_id=5 ";
+      $gs = new AI_GrupoSecciones($grupo_secciones);
       if(!is_null($grupo_secciones))
       {
       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($db);
+           if(count($gs->secciones) > 0)
+               $query .= ' AND Articles.section_id IN('.implode(',', $gs->secciones).') ';
       }
       }
+      else{
+        $censuradas = $gs->getSeccionesOcultasArray($db);
+        $query .= ' AND Articles.section_id NOT IN('.implode(',', $censuradas).') ';
+        
+      }
+      
       if(!is_null($antiguedad))
       {
         $hoy->subtractSeconds(60*60*24*$antiguedad);
       if(!is_null($antiguedad))
       {
         $hoy->subtractSeconds(60*60*24*$antiguedad);
@@ -91,17 +96,25 @@ 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))
       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'));
+         trigger_error($result->getMessage('query mal hecho'), E_USER_ERROR);
+      $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())
       {
           $n = new noticia($row[0]);
       $impar = true;
       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]");
-         $not->setVerMas("noticias?grupo=TODO");
+         $not->setLink("una_noticia?numero=$row[0]");
+         if(is_null($grupo_secciones))
+         {
+         //$n->getIdSeccion();
+           $not->setVerMas("noticias?grupo=".
+                           AI_GrupoSecciones::getGrupo($n->getIdSeccion(), $db));
+         }
           if($row[1] == 'NUEVA')
               $not->setNuevo(true);
           if($impar)
           if($row[1] == 'NUEVA')
               $not->setNuevo(true);
           if($impar)
@@ -129,7 +142,7 @@ class HTML_Titulares extends HTML_Table {
      */
     function getCSS() // ~X2C
     {
      */
     function getCSS() // ~X2C
     {
-        return "css/noticias.css";
+        return 'css/noticias.css';
     }
     // -X2C
 
     }
     // -X2C