X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/89bf19b89812163353d94256d7adb0f3a9cda453..5f6890ebb590532b37dcfbcc8809cac5da7fcdc3:/sistema/local_lib/HTML_Titulares.php diff --git a/sistema/local_lib/HTML_Titulares.php b/sistema/local_lib/HTML_Titulares.php index 9e4597b..e45d0e6 100644 --- a/sistema/local_lib/HTML_Titulares.php +++ b/sistema/local_lib/HTML_Titulares.php @@ -66,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')); + $db2 = DB::Connect('mysql://intranet:intranet@bal747f/intranet');//FIXME $db = MEconDAVDB::Connect(); $hoy = new Date(); $fecha_nuevo = $hoy->format('%Y-%m-%d'); @@ -77,7 +78,6 @@ class HTML_Titulares extends HTML_Table { 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) @@ -91,17 +91,25 @@ class HTML_Titulares extends HTML_Table { } $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')); - $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()) { $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->setLink("una_noticia.php?numero=$row[0]"); - $not->setVerMas("noticias?grupo=TODO"); + 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)