$m->addTitle('Noticias');
$noticias = new HTML_Table(array('width' => '760', 'border' => '0'));
+ if(isset($_GET['grupo']))
+ {
+ $grupo = $_GET['grupo'];
+ $dias = null;
+ }
+ else
+ {
+ $grupo = null;
+ $dias = 7;
+ }
//Esto va a cambiar...
$db = IntranetDB::connect();
$dbdata = array(
'db' => $db,
'tabla' => 'grupo_secciones',
'id' => 'grupo',
+ 'id_activo' => $grupo,
'nombre' => 'nombre',
'id_padre' => 'grupo_padre',
'prepend_link' => 'noticias.php?grupo=');
- $arbol = new HTML_ArbolDB($dbdata, '/MECON/images/arbol_noticias.gif');
+ $arbol = new HTML_ArbolDB($dbdata, 'NOTICIAS');
- $titulares = new HTML_Titulares($_GET['grupo'], 7);
+ $titulares = new HTML_Titulares($grupo, $dias);
$noticias->addRow(array($arbol,$titulares));
+ $m->addStyleSheet($arbol->getCSS());
+ $m->addStyleSheet($titulares->getCSS());
$noticias->updateCellAttributes(0, 0, array('valign'=>'top', 'width'=>'160'));
- $noticias->updateCellAttributes(0, 1, array('width'=>'600'));
+ $noticias->updateCellAttributes(0, 1, array('valign'=>'top', 'width'=>'600'));
$m->addBodyContent($noticias);
$m->display();