2 require_once '../local_lib/HTML_DietMarco.php';
3 require_once '../local_lib/intranetdb.php';
4 require_once 'MECON/HTML/ArbolDB.php';
5 require_once '../../lib/noticia.php';
6 require_once '../local_lib/HTML_Noticia.php';
8 $m = new HTML_DietMarco('noticias', 'Noticias');
9 $noticias = new HTML_Table(array('width' => '760', 'border' => '0'));
11 $db = IntranetDB::connect();
14 'tabla' => 'grupo_secciones',
17 'id_padre' => 'grupo_padre',
19 'prepend_link' => 'noticias.php?grupo=');
20 $arbol = new MECON_HTML_ArbolDB($dbdata, 'NOTICIAS');
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 $m->addStyleSheet($arbol->getCSS());
27 $m->addStyleSheet($noticia->getCSS());
28 $noticias->updateCellAttributes(0, 0, array('valign'=>'top'));
29 $noticias->updateCellAttributes(0, 1, array('valign'=>'top'));
30 $m->addBodyContent($noticias);