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';
7 require_once 'AI/GrupoSecciones.php';
9 $m = new HTML_DietMarco('noticias', 'Noticias');
10 $noticias = new HTML_Table(array('width' => '760', 'border' => '0'));
12 $db = IntranetDB::connect();
13 $db2 = DB::Connect('mysql://intranet:intranet@bal747f/intranet');//FIXME
14 $n = new noticia($_GET['numero']);
15 $grupo = AI_GrupoSecciones::getGrupo($n->getIdSeccion(), $db2);
18 'tabla' => 'grupo_secciones',
20 'id_activo' => $grupo,
22 'id_padre' => 'grupo_padre',
24 'prepend_link' => 'noticias.php?grupo=');
25 $arbol = new MECON_HTML_ArbolDB($dbdata, 'NOTICIAS');
27 $noticia = new HTML_Noticia($n);
28 $noticia->setVolver('noticias.php');
29 $noticia->setVolver("noticias?grupo=".
30 AI_GrupoSecciones::getGrupo($n->getIdSeccion(), $db2));
31 $noticia->setCompleta(true);
32 $noticias->addRow(array($arbol,$noticia));
33 $m->addStyleSheet($arbol->getCSS());
34 $m->addStyleSheet($noticia->getCSS());
35 $noticias->updateCellAttributes(0, 0, array('valign'=>'top'));
36 $noticias->updateCellAttributes(0, 1, array('valign'=>'top'));
37 $m->addBodyContent($noticias);