]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Arbol.php
Cambio del nombre del objeto Tabla. Ahora se llama MECON_HTML_Tabla. Esto es para...
[mecon/meconlib.git] / lib / MECON / HTML / Arbol.php
index 5ba8f0a62e2344f3e75b0688beb6057157150086..02813c988dc347d23ccada2d78e85bb834ca1820 100644 (file)
@@ -77,7 +77,7 @@ class HTML_Arbol extends HTML_Table
         $atr = array(
             'border' => '0',
             'width'  => $n * $tabulados,
-            'height' => '10'
+            'height' => '1'
         );
         $margen = ' ';
         if ($n) {
@@ -130,8 +130,7 @@ class HTML_Arbol extends HTML_Table
         $this->addRow(array($titulo), array('bgcolor' => '#FFFFFF'));
         $this->expandir($this->datos, 0, $t_interna);
         $this->addRow(array($t_interna->toHTML()));
-        // FIXME - sacar la style sheet de aca.
-        return '<link rel="stylesheet" href="'.$this->getCSS().'">'.parent::toHTML();
+        return parent::toHTML();
     }
 
     function expandirArray($dat, $n, $filtrarActivos)
@@ -156,6 +155,36 @@ 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.
      *