+<?php
+// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
+// +--------------------------------------------------------------------+
+// | Ministerio de EconomÃa |
+// | Intranet |
+// +--------------------------------------------------------------------+
+// | This file is part of Intranet. |
+// | |
+// | Intranet is free software; you can redistribute it and/or modify |
+// | it under the terms of the GNU General Public License as published |
+// | by the Free Software Foundation; either version 2 of the License, |
+// | or (at your option) any later version. |
+// | |
+// | Intranet is distributed in the hope that it will be useful, but |
+// | WITHOUT ANY WARRANTY; without even the implied warranty of |
+// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
+// | General Public License for more details. |
+// | |
+// | You should have received a copy of the GNU General Public License |
+// | along with Hooks; if not, write to the Free Software Foundation, |
+// | Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
+// +--------------------------------------------------------------------+
+// | Creado: Thu Jul 24 15:27:04 2003 |
+// | Autor: Gonzalo Merayo <gmeray@mecon.gov.ar> |
+// +--------------------------------------------------------------------+
+//
+// $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $
+//
+
+
+require_once 'HTML/Image.php';
+
+// +X2C includes
+require_once 'HTML/Table.php';
+// ~X2C
+
+// +X2C Class 165 :HTML_Servicio
+/**
+ * @access public
+ */
+class HTML_Servicio extends HTML_Table {
+ // ~X2C
+
+ // +X2C Operation 166
+ /**
+ * @param int $seccion
+ *
+ * @return void
+ * @access public
+ */
+ function HTML_Servicio($seccion) // ~X2C
+ {
+ parent::HTML_Table(array('width' =>'360',
+ 'border' => '0',
+ 'cellspacing' => '0',
+ 'cellpadding' => '0',
+ 'bgcolor' => '#FFFFFF'));
+ }
+ // -X2C
+
+ // +X2C Operation 167
+ /**
+ * @return void
+ * @access public
+ */
+ function toHTML() // ~X2C
+ {
+ $this->addRow(array("Nombre(sin estilo)"),
+ array('align' => 'center',
+ 'class' => 'arboltitulo',
+ 'background'=>'images/servicio_cabecera.gif',
+ 'height'=>30));
+ $img = new HTML_Image('images/servicio_bullet.gif');
+ $int =& new HTML_Table(array('width' =>'360',
+ 'border' => '0',
+ 'cellspacing' => '0',
+ 'cellpadding' => '0',
+ 'bgcolor' => '#FFFFFF'));
+ $int->addRow(array($img, 'Nombre(sin estilo)',$img,'nombre'),
+ array('valign' => 'top'));
+ $int->updateColAttributes(0, array('width' => '10%',
+ 'background' => 'images/servicio_borde_sup_izq.gif'));
+ $int->updateColAttributes(1, array('width' => '40%',
+ 'background' => 'images/servicio_borde_sup_cen.gif'));
+ $int->updateColAttributes(2, array('width' => '10%',
+ 'background' => 'images/servicio_borde_sup_cen.gif'));
+ $int->updateColAttributes(3, array('width' => '40%',
+ 'background' => 'images/servicio_borde_sup_der.gif'));
+ $this->addRow(array($int));
+ $this->addRow(array($int));
+ $this->addRow(array($int));
+ $this->addRow(array(new HTML_Image('images/servicio_borde_inf.gif')));
+ return parent::toHTML();
+ }
+ // -X2C
+
+} // -X2C Class :HTML_Servicio
+?>