X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/0030a5e4c8ffc960a1ab7413eb1cc1ef111bf366..1f70b230e314ae148be361dc98b9ce40792f7b7e:/sistema/www/noticias.php diff --git a/sistema/www/noticias.php b/sistema/www/noticias.php index 0ffde4d..e4a24f3 100644 --- a/sistema/www/noticias.php +++ b/sistema/www/noticias.php @@ -1,30 +1,42 @@ - toHTML(); -?> - - - - - -
- 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', 'id_padre' => 'grupo_padre', 'prepend_link' => 'noticias.php?grupo='); - $arbol = new HTML_ArbolDB($dbdata, '/MECON/images/arbol_noticias.gif'); - echo $arbol->toHTML(); - ?> - - -
- + $arbol = new HTML_ArbolDB($dbdata, 'NOTICIAS'); + + $titulares = new HTML_Titulares($grupo, $dias); + $noticias->addRow(array($arbol,$titulares)); + $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(); +?>