}
$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'));
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)
}
// -X2C
+ // +X2C Operation 196
+ /**
+ * @return void
+ * @access public
+ */
+ function getCSS() // ~X2C
+ {
+ return "css/noticias.css";
+ }
+ // -X2C
+
} // -X2C Class :HTML_Titulares
?>