- '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();
+ 'height'=>30,
+ 'class' => 'servicio_titulo_tabla'));
+ $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, '',$img,''),
+ array());
+ $int->updateColAttributes(0, array('width' => '10%',
+ 'background' => 'images/servicio_borde_sup_izq.gif',
+ 'valign' => 'top'));
+ $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',
+ 'valign' => 'top'));
+ $int->updateColAttributes(3, array('width' => '40%',
+ 'background' => 'images/servicio_borde_sup_der.gif'));
+ $par = false;
+ foreach($this->servicio->getHijos() as $s)
+ {
+ if($s->link == '')
+ $s->link = 'servicios.php?servicios='.$s->servicio;
+ if($par)
+ {
+ $int->setCellContents(0, 3, new HTML_Link($s->link, $s->nombre,
+ array(),
+ array('class' => 'servicio_tabla')));
+ $this->addRow(array($int));
+ $par = false;
+ }
+ else
+ {
+ $int->setCellContents(0, 1, new HTML_Link($s->link, $s->nombre,
+ array(),
+ array('class' => 'servicio_tabla')));
+ $par = true;
+ }
+ }
+ if($par)
+ {
+ $int->setCellContents(0, 1, new HTML_Link($s->link, $s->nombre,
+ array(),
+ array('class' => 'servicio_tabla')));
+ $int->setCellContents(0, 2, '');
+ $int->setCellContents(0, 3, '');
+ $this->addRow(array($int));
+ }
+
+ $this->addRow(array(new HTML_Image('images/servicio_borde_inf.gif')));
+ return parent::toHTML();