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 MECON_HTML_ArbolDB($dbdata, 'NOTICIAS'); $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('valign'=>'top', 'width'=>'600')); $m->addBodyContent($noticias); $m->display(); ?>