]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios.php
Corrijo el borde de la tablita de servicios
[mecon/intranet.git] / sistema / www / servicios.php
index ebc9544f9735821e31817f497a0b1b83105c0330..85a296b10e20379ce372873c3f9cd9a92f92e6e5 100644 (file)
@@ -1,7 +1,37 @@
-<body bgcolor="#FFFFFF" class="subtitulo" link="#003366" vlink="#660066" alink="#0066FF" topmargin="0">
 <?
 <?
-  require_once '../local_lib/copete.php';
-  $c = new Copete('servicios');
-  echo $c->toHTML();
+  require_once '../local_lib/HTML_DietMarco.php';
+  require_once '../local_lib/intranetdb.php';
+  require_once 'MECON/HTML/Arbol/ArbolDB.php';
+  $m = new HTML_DietMarco('servicios');
+  $m->addTitle('Servicios');
+
+  $seccion =& new HTML_Table(array('width'       =>'360',
+                                  'border'      => '0',
+                                  'cellspacing' => '0',
+                                  'cellpadding' => '0',
+                                  'bgcolor'     => '#FFFFFF'));
+  $seccion->addRow(array("Nombre(sin estilo)"), array('align' => 'center',
+                                       'class' => 'arboltitulo',
+                                       'background'=>'images/servicio_cabecera.gif',
+                                       'height'=>32));
+  $img = new HTML_Image('images/servicio_bullet.gif');
+  $int =& new HTML_Table(array('width'       =>'360',
+                                  'border'      => '0',
+                                  'cellspacing' => '0',
+                                  'cellpadding' => '0',
+                                  'bgcolor'     => '#FFFFFF',
+                                 'background' => 'images/servicio_borde_sup.gif'));
+  $int->addRow(array($img, 'Nombre(sin estilo)',$img,'nombre'),
+                          array('valign' => 'top'));
+  $int->updateColAttributes(0, array('width' => '10%'));
+  $int->updateColAttributes(1, array('width' => '40%'));
+  $int->updateColAttributes(2, array('width' => '10%'));
+  $int->updateColAttributes(3, array('width' => '40%'));
+  $seccion->addRow(array($int));
+  $seccion->addRow(array($int));
+  $seccion->addRow(array($int));
+  $seccion->addRow(array(new HTML_Image('images/servicio_borde_inf.gif')));
+
+  $m->addBodyContent($seccion);
+  $m->display();
 ?>
 ?>
-</body>