1 <link rel="stylesheet" href="css/noticias.css">
2 <body bgcolor="#FFFFFF" class="subtitulo" link="#003366" vlink="#660066" alink="#0066FF" topmargin="0">
4 require_once '../local_lib/copete.php';
5 $c = new Copete('noticias');
7 $noticias = new HTML_Table(array('width' => '760', 'border' => '0'));
8 require_once '../local_lib/intranetdb.php';
9 require_once 'MECON/HTML/Arbol/ArbolDB.php';
10 $db = IntranetDB::connect();
13 'tabla' => 'grupo_secciones',
16 'id_padre' => 'grupo_padre',
17 'prepend_link' => 'noticias.php?grupo=');
18 $arbol = new HTML_ArbolDB($dbdata, '/MECON/images/arbol_noticias.gif');
20 require_once '../../lib/noticia.php';
21 require_once '../local_lib/HTML_Noticia.php';
22 $noticia = new HTML_Noticia(new noticia($_GET['numero']));
23 $noticia->setVolver('noticias.php');
24 $noticia->setCompleta(true);
25 $noticias->addRow(array($arbol,$noticia));
26 $noticias->updateCellAttributes(0, 0, array('valign'=>'top'));
27 $noticias->updateCellAttributes(0, 1, array('valign'=>'top'));