X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/cf3ecc87d6a327afdb468c29f890d317b3d99f07..3ddb24445dfbd0206ad64b72531a0986c4feb63c:/lib/MECON/HTML/Arbol.php?ds=sidebyside
diff --git a/lib/MECON/HTML/Arbol.php b/lib/MECON/HTML/Arbol.php
index bca4d58..0b36067 100644
--- a/lib/MECON/HTML/Arbol.php
+++ b/lib/MECON/HTML/Arbol.php
@@ -1,6 +1,7 @@
require_once 'HTML/Table.php';
+require_once 'HTML/Image.php';
class HTML_Arbol extends HTML_Table
{
@@ -18,33 +19,53 @@ class HTML_Arbol extends HTML_Table
'cellspacing' => '2',
'cellpadding' => '0',
'class' => 'bodytext'));
- $this->addRow(array(''));
+/* $this->addRow(array(new HTML_Image($imagen,'',array('width'=>'132',
+ 'height'=>'26',
+ 'border'=>'0'))));*/
+/* $titulo = new HTML_Table(array('width'=>'132',
+ 'height'=>'26',
+ 'border' => '0',
+ 'cellspacing' => '0',
+ 'cellpadding' => '0',
+ 'align'=>'center',
+ 'background'=>'/MECON/images/arbol_titulo.gif'));
+ $titulo->addRow(array('aa'), array('align'=>'center'));
+ $this->addRow(array($titulo));*/
+ $this->addRow(array('
'));
$this->expandir($dat, 0);
}
+
function expandir($dat, $n)
{
$imagen = '';
- $class = 'menu';
$bullets = array('',
'/MECON/images/arbol_bullet_1.gif',
'/MECON/images/arbol_bullet_2.gif',
'/MECON/images/arbol_bullet_3.gif');
$tabulados = array(0, 7, 13, 20);
$classes = array('menu', 'menu1', 'menu1', 'menu2');
- $imagen = '';
+
+ $atr = array('border' => '0',
+ 'width' => $tabulados[$n],
+ 'height' => '10');
+ $imagen =& new HTML_Image($bullets[$n], 'bullet', $atr);
foreach($dat as $e)
{
+ $e['titulo'] = $imagen->toHTML().$e['titulo'];
+ if(isset($e['activado']) && $e['activado'] != 0) $class = 'menu_activo';
+ else $class = $classes[$n];
if(!is_null($e['link']))
- $e['titulo'] = ''.$imagen.$e['titulo'].'';
- if(isset($e['activado']) && $e['activado'] != 0) $class_a = 'menu_activo';
- else $class_a = $classes[$n];
- $this->t_interna->addRow(array($e['titulo']), array('class' => $class_a));
+ $e['titulo'] = ''.$e['titulo'].'';
+ $this->t_interna->addRow(array($e['titulo']), array('class' => $class));
if(isset($e['sub']))
$this->expandir($e['sub'], $n+1);
}
}
+
function toHTML()
{
echo '';