X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/b1898620c4461ff170c6c18f6e68d792ac652125..aa4c4c45d35dfb51f40f9f04b68de2047f57f634:/sistema/www/servicios.php?ds=sidebyside diff --git a/sistema/www/servicios.php b/sistema/www/servicios.php index ebc9544..55bd5fa 100644 --- a/sistema/www/servicios.php +++ b/sistema/www/servicios.php @@ -1,7 +1,39 @@ - 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(); ?> -