]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Arbol.php
BugFix
[mecon/meconlib.git] / lib / MECON / HTML / Arbol.php
index 815416615fa7ee3759d8088aef1ca1a3dfdddc4c..fcd976f6126d68b2094e3fd5c867f6f12b90c676 100644 (file)
@@ -90,7 +90,7 @@ class MECON_HTML_Arbol extends HTML_Table
      * @access public
      */
     function getCSS() {
      * @access public
      */
     function getCSS() {
-        return '/MECON/css/arbol';
+        return '/MECON/css/html/arbol';
     }
 
     /**
     }
 
     /**
@@ -138,6 +138,7 @@ class MECON_HTML_Arbol extends HTML_Table
             $titulo = $e['titulo'];
             if(isset($e['activo']) && $e['activo'] != 0) $class = 'menu_activo';
             else $class = $classes[$n];
             $titulo = $e['titulo'];
             if(isset($e['activo']) && $e['activo'] != 0) $class = 'menu_activo';
             else $class = $classes[$n];
+            if(isset($e['bold'])) $class .= '_bold';
             if(!is_null($e['link'])) {
                 $link = $e['link'];
                 if ($this->link_append and @$e['id']) {
             if(!is_null($e['link'])) {
                 $link = $e['link'];
                 if ($this->link_append and @$e['id']) {
@@ -145,7 +146,7 @@ class MECON_HTML_Arbol extends HTML_Table
                 }
                 $titulo = '<a href="'.$link.'" class="'.$class.'">'.$titulo.'</a>';
             }
                 }
                 $titulo = '<a href="'.$link.'" class="'.$class.'">'.$titulo.'</a>';
             }
-            $titulo = '<table border=0 cellpadding=0 cellspacing=0><tr><td valign="top">'.$margen.$imagen.'</td><td>'.$titulo.'</td></tr></table>';//TODO
+            $titulo = '<table border=0 cellpadding=0 cellspacing=0 align="left"><tr><td valign="top">'.$margen.$imagen.'</td><td>'.$titulo.'</td></tr></table>';//TODO
             $tabla->addRow(array($titulo), array('class' => $class));
             if(isset($e['sub'])) {
                 $this->expandir($e['sub'], $n+1, $tabla);
             $tabla->addRow(array($titulo), array('class' => $class));
             if(isset($e['sub'])) {
                 $this->expandir($e['sub'], $n+1, $tabla);