X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/19284c51bfd93be9cb66ff7c7246958e95956fa5..0a9dca07bde2cc9182c51c6909f260423a88e696:/sistema/local_lib/HTML_Titulares.php diff --git a/sistema/local_lib/HTML_Titulares.php b/sistema/local_lib/HTML_Titulares.php index 12542b1..03d53a0 100644 --- a/sistema/local_lib/HTML_Titulares.php +++ b/sistema/local_lib/HTML_Titulares.php @@ -91,6 +91,7 @@ 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')); @@ -99,9 +100,15 @@ class HTML_Titulares extends HTML_Table { 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=TODO");//TODO + } if($row[1] == 'NUEVA') $not->setNuevo(true); if($impar) @@ -122,5 +129,16 @@ class HTML_Titulares extends HTML_Table { } // -X2C + // +X2C Operation 196 + /** + * @return void + * @access public + */ + function getCSS() // ~X2C + { + return "css/noticias.css"; + } + // -X2C + } // -X2C Class :HTML_Titulares ?>