]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Arbol.php
Se agrega una opcion a ArbolDB para que seleccione directamente un id.
[mecon/meconlib.git] / lib / MECON / HTML / Arbol.php
index fc2cf465d6a6d1260187e6bf2f50e814598dddd1..5ba8f0a62e2344f3e75b0688beb6057157150086 100644 (file)
@@ -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'];
@@ -115,7 +130,8 @@ 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()));
-        return parent::toHTML();
+        // FIXME - sacar la style sheet de aca.
+        return '<link rel="stylesheet" href="'.$this->getCSS().'">'.parent::toHTML();
     }
 
     function expandirArray($dat, $n, $filtrarActivos)
@@ -124,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('&nbsp;&nbsp;&nbsp;', $n) . $e['titulo'];
@@ -144,12 +160,12 @@ class HTML_Arbol extends HTML_Table
      * 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);
     }
 
     /**