-<body bgcolor="#FFFFFF" class="subtitulo" link="#003366" vlink="#660066" alink="#0066FF" topmargin="0">
<?
- require_once '../local_lib/copete.php';
- $c = new Copete('noticias');
- echo $c->toHTML();
-?>
-<table width='760' border='0'>
- <tr>
- <td width='160' valign='top'>
- <?
- require_once '../local_lib/intranetdb.php';
- require_once 'MECON/HTML/Arbol/ArbolDB.php';
- $db = IntranetDB::connect();
- $dbdata = array(
+ require_once '../local_lib/HTML_DietMarco.php';
+ require_once '../local_lib/intranetdb.php';
+ require_once 'MECON/HTML/ArbolDB.php';
+ require_once '../local_lib/HTML_Titulares.php';
+
+ $m = new HTML_DietMarco('noticias', 'Noticias');
+ $m->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',
+ 'habilitado' => 'habilitado',
'id_padre' => 'grupo_padre',
+ 'order' => '',
'prepend_link' => 'noticias.php?grupo=');
- $arbol = new HTML_ArbolDB($dbdata, '/MECON/images/arbol_noticias.gif');
- echo $arbol->toHTML();
- ?>
- </td>
- <td width='600'>
- <? include 'noticias.htm'?>
- </td>
- </tr>
-</table>
-</body>
+ $arbol = new MECON_HTML_ArbolDB($dbdata, 'NOTICIAS');
+ $titulares = new HTML_Titulares($grupo, $dias);
+ if($titulares->numero_noticias != 1)//FIXME aca va > en cuanto este la pagina para cuando no hay ninguna noticia
+ {
+ $noticias->addRow(array($arbol,$titulares));
+ }elseif($titulares->numero_noticias == 1){
+ $noticia = new HTML_Noticia($titulares->primera_noticia);
+ $noticia->setVolver('noticias.php');
+ $noticia->setCompleta(true);
+ $noticias->addRow(array($arbol,$noticia));
+ }
+
+ $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();
+?>