X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/ce1b40d981eccb0f01656d9796582d9562685f17..24fd3e0f15c00f9048fc2b5ad2be287f50eb2824:/lib/MECON/HTML/Arbol.php diff --git a/lib/MECON/HTML/Arbol.php b/lib/MECON/HTML/Arbol.php index 899fb76..d86c49e 100644 --- a/lib/MECON/HTML/Arbol.php +++ b/lib/MECON/HTML/Arbol.php @@ -60,23 +60,38 @@ class HTML_Arbol extends HTML_Table function expandir($dat, $n, &$tabla) { - $imagen = ''; $bullets = array( '', '/MECON/images/arbol_bullet_1.gif', '/MECON/images/arbol_bullet_2.gif', '/MECON/images/arbol_bullet_3.gif' ); - $tabulados = 7; + $alts = array( + '', + '*', + '-', + '·' + ); $classes = array('menu', 'menu1', 'menu1', 'menu2'); - - $atr = array('border' => '0', - 'width' => $n * $tabulados, - 'height' => '10'); - $imagen =& new HTML_Image(@$bullets[$n] ? $bullets[$n] : '', 'bullet', $atr); + $tabulados = 7; + $atr = array( + 'border' => '0', + 'width' => $n * $tabulados, + 'height' => '10' + ); + $margen = ' '; + if ($n) { + $margen = new HTML_Image('/MECON/images/blanco.gif', str_repeat('  ', $n), $atr); + $margen = $margen->toHtml(); + } + $imagen = ''; + if (@$bullets[$n]) { + $imagen = new HTML_Image($bullets[$n], @$alts[$n]); + $imagen = $imagen->toHtml(); + } foreach ($dat as $e) { - $titulo = $imagen->toHTML().$e['titulo']; - if(isset($e['activado']) && $e['activado'] != 0) $class = 'menu_activo'; + $titulo = $margen.$imagen.$e['titulo']; + if(isset($e['activo']) && $e['activo'] != 0) $class = 'menu_activo'; else $class = $classes[$n]; if(!is_null($e['link'])) { $link = $e['link']; @@ -125,7 +140,7 @@ class HTML_Arbol extends HTML_Table foreach ($dat as $e) { // Si no tiene ID o esta activo y se filtran los activos, se // continua con el proximo item. - if (!@$e['id'] or $filtrarActivos and @$e['activado']) { + if (!@$e['id'] or $filtrarActivos and @$e['activo']) { continue; } $array[$e['id']] = str_repeat('   ', $n) . $e['titulo']; @@ -141,16 +156,46 @@ class HTML_Arbol extends HTML_Table return $this->expandirArray($this->datos, 0, $filtrarActivos); } + function expandirString($dat, $n, $filtrarActivos) + { + $str = ''; + $tot = count($dat); + for ($i = 0; $i < $tot; $i++) { + $e = $dat[$i]; + // Si no tiene ID o esta activo y se filtran los activos, se + // continua con el proximo item. + if (!@$e['id'] or $filtrarActivos and @$e['activo']) { + continue; + } + $indent = str_repeat('| ', $n); + if ($i == ($tot - 1)) { + $indent .= '`- '; + } else { + $indent .= '|- '; + } + $str .= $indent . $e['titulo'] . "\n"; + if(@$e['sub']) { + $str .= $this->expandirString($e['sub'], $n + 1, $filtrarActivos); + } + } + return $str; + } + + function toString($filtrarActivos = true) + { + return $this->expandirString($this->datos, 0, $filtrarActivos); + } + /** * Activa un nodo del árbol. * * @param int $id Id del nodo a modificar. - * @param bool $activado Nuevo valor, true si está activado, false si no. + * @param bool $activo Nuevo valor, true si está activo, false si no. * * @return bool True si se pudo modificar. */ - function setActivado($id, $activado = 1) { - return $this->modificarNodo($this->datos, $id, 'activado', $activado); + function setActivo($id, $activo = 1) { + return $this->modificarNodo($this->datos, $id, 'activo', $activo); } /**