]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios.php
Primera versiĆ³n funcional del listado de sistemas. Falta retocar el look&feel pero...
[mecon/intranet.git] / sistema / www / servicios.php
index ebc9544f9735821e31817f497a0b1b83105c0330..55bd5fae417e8f482bc006294e5170d7af5104ff 100644 (file)
@@ -1,7 +1,39 @@
-<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'     => '#003868'));
+  $seccion->addRow(array("Nombre(sin estilo)"), array('align' => 'center',
+                                       'class' => 'arboltitulo',
+                                       'background'=>'images/servicio_cabecera.gif',
+                                       'height'=>32));
+  $tmp =& new HTML_Table(array ('width'         =>'100%',
+                               'border'        => '0',
+                               'cellspacing'   => '2',
+                               'cellpadding'   => '0',
+                               'class'         => 'bodytext'));
+  $interna =& new HTML_Table(array ('width'         =>'100%'));
+  $img = new HTML_Image('images/servicio_bullet.gif');
+  $interna->addRow(array($img, 'Nombre(sin estilo) ffffff',$img,'nombre'),
+                          array('valign' => 'top'));
+  $interna->addRow(array($img, 'Nombre(sin estilo)',$img,'nombre'),
+                          array('valign' => 'top'));
+  $interna->addRow(array($img, 'Nombre(sin estilo)',$img,'nombre'),
+                          array('valign' => 'top'));
+  $interna->updateColAttributes(0, array('width' => '10%'));
+  $interna->updateColAttributes(1, array('width' => '40%'));
+  $interna->updateColAttributes(2, array('width' => '10%'));
+  $interna->updateColAttributes(3, array('width' => '40%'));
+  $tmp->addRow(array($interna), array('bgcolor' => '#FFFFFF'));
+  $seccion->addRow(array($tmp), array('bgcolor' => '#003868'));
+
+  $m->addBodyContent($seccion);
+  $m->display();
 ?>
-</body>