X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/707e1370e56a9a9536a81aab72b530c48e3d361e..49cc080e37b402e92f8be7b70d7c9acefa9e43db:/sistema/www/noticias.php?ds=sidebyside diff --git a/sistema/www/noticias.php b/sistema/www/noticias.php index 9bc004f..a0c1a16 100644 --- a/sistema/www/noticias.php +++ b/sistema/www/noticias.php @@ -1,42 +1,32 @@ - toHTML(); -?> - - - - - -
- addTitle('Noticias'); + + $noticias = new HTML_Table(array('width' => '760', 'border' => '0')); + //Esto va a cambiar... + $db = IntranetDB::connect(); + $dbdata = array( 'db' => $db, 'tabla' => 'grupo_secciones', 'id' => '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(); - ?> - - setNuevo(true); - $ht = new HTML_Table(array('width'=>'600', 'border'=>'0', 'cellspacing'=>'0')); - $ht->addRow(array($not, $not)); - $ht->addRow(array($not, $not)); - $ht->addRow(array($not, $not)); - $ht->display(); - ?> -
- + $arbol = new HTML_ArbolDB($dbdata, 'NOTICIAS'); + + $grupo = null; + if(isset($_GET['grupo'])) + $grupo = $_GET['grupo']; + $titulares = new HTML_Titulares($grupo, 7); + $noticias->addRow(array($arbol,$titulares)); + $noticias->updateCellAttributes(0, 0, array('valign'=>'top', 'width'=>'160')); + $noticias->updateCellAttributes(0, 1, array('width'=>'600')); + + $m->addBodyContent($noticias); + $m->display(); +?>