]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/noticias.php
Corrijo los estilos que se pisaban entre si
[mecon/intranet.git] / sistema / www / noticias.php
index 08f16353c87e945227cd5b9d1a6f9b020d2bb4dd..81c9931fd59c85a141ccbf7d5c7c3f7c043f7e55 100644 (file)
@@ -1,17 +1,27 @@
+<link rel="stylesheet" href="css/noticias.css">
 <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();
+  $c->display();
+  $noticias = new HTML_Table(array('width' => '760', 'border' => '0'));
+  require_once '../local_lib/intranetdb.php';
+  require_once 'MECON/HTML/Arbol/ArbolDB.php';
+  $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');
+
+  require_once '../local_lib/HTML_Titulares.php';
+  $titulares = new HTML_Titulares(null, 7);
+  $noticias->addRow(array($arbol,$titulares));
+  $noticias->updateCellAttributes(0, 0, array('valign'=>'top', 'width'=>'160'));
+  $noticias->updateCellAttributes(0, 1, array('width'=>'600'));
+  $noticias->display();
 ?>
-<table width='760' border='0'>
-  <tr>
-    <td width='160' valign='top'>
-      <? include '../../../meconlib/tronco/test/prueba_arbol.php'?>
-    </td>
-    <td width='600'>
-      <? include 'noticias.htm'?>
-    </td>
-  </tr>
-</table>
 </body>