2 require_once 'HTML_DietMarco.php';
3 require_once 'MECON/HTML/ArbolDB.php';
4 require_once 'noticia.php';
5 require_once 'HTML_Noticia.php';
6 require_once 'AI/GrupoSecciones.php';
8 $m = new HTML_DietMarco('noticias', 'Noticias');
9 $noticias = new HTML_Table(array('width' => '760', 'border' => '0'));
11 $n = new noticia($_GET['numero']);
12 $grupo = AI_GrupoSecciones::getGrupo($n->getIdSeccion(), $DB);
15 'tabla' => 'intranet.grupo_secciones',
17 'id_activo' => $grupo,
18 'habilitado' => 'habilitado',
20 'id_padre' => 'grupo_padre',
22 'prepend_link' => 'noticias.php?grupo=');
23 $arbol = new MECON_HTML_ArbolDB($dbdata, 'NOTICIAS');
25 $noticia = new HTML_Noticia($n);
26 $noticia->setVolver('noticias.php');
27 $noticia->setVolver("noticias?grupo=".
28 AI_GrupoSecciones::getGrupo($n->getIdSeccion(), $DB));
29 $noticia->setCompleta(true);
30 $noticias->addRow(array($arbol,$noticia));
31 $m->addStyleSheet($arbol->getCSS());
32 $m->addStyleSheet($noticia->getCSS());
33 $noticias->updateCellAttributes(0, 0, array('valign'=>'top'));
34 $noticias->updateCellAttributes(0, 1, array('valign'=>'top'));
35 $m->addBodyContent($noticias);