]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Arbol.php
Se mejora un poco los ALT para navegadores de texto.
[mecon/meconlib.git] / lib / MECON / HTML / Arbol.php
index e33e65d90a55890f36d58072e14bd4a965467591..7c39ca25e9d928d5ea2ef6eff942c44c1e6e8c41 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';
     }
 
     /**
     }
 
     /**
@@ -117,7 +117,8 @@ class MECON_HTML_Arbol extends HTML_Table
             '-',
             '·'
         );
             '-',
             '·'
         );
-        $classes = array('menu', 'menu1', 'menu1', 'menu2');
+        $classes = array('mecon_html_arbol_menu', 'mecon_html_arbol_menu1',
+            'mecon_html_arbol_menu1', 'mecon_html_arbol_menu2');
         $tabulados = 7;
         $atr = array(
             'border' => '0',
         $tabulados = 7;
         $atr = array(
             'border' => '0',
@@ -135,9 +136,10 @@ class MECON_HTML_Arbol extends HTML_Table
             $imagen = $imagen->toHtml();
         }
         foreach ($dat as $e) {
             $imagen = $imagen->toHtml();
         }
         foreach ($dat as $e) {
-            $titulo = $margen.$imagen.$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 = 'mecon_html_arbol_menu_activo';
+            else $class = @$classes[$n] ? $classes[$n] : end($classes);
+            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,6 +147,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 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);
@@ -166,7 +169,7 @@ class MECON_HTML_Arbol extends HTML_Table
             'border'        => '0',
             'cellspacing'   => '2',
             'cellpadding'   => '0',
             'border'        => '0',
             'cellspacing'   => '2',
             'cellpadding'   => '0',
-            'class'         => 'bodytext'));
+            'class'         => 'mecon_html_arbol_bodytext'));
         $titulo = new HTML_Table(array(
             'width'         => '132',
             'height'        => '26',
         $titulo = new HTML_Table(array(
             'width'         => '132',
             'height'        => '26',
@@ -177,7 +180,7 @@ class MECON_HTML_Arbol extends HTML_Table
             'background'    => '/MECON/images/arbol_titulo.gif'));
         $titulo->addRow(array($this->titulo), array(
             'align' => 'center',
             'background'    => '/MECON/images/arbol_titulo.gif'));
         $titulo->addRow(array($this->titulo), array(
             'align' => 'center',
-            'class' => 'arboltitulo'));
+            'class' => 'mecon_html_arbol_titulo'));
         $this->addRow(array($titulo), array('bgcolor' => '#FFFFFF'));
         $this->expandir($this->datos, 0, $t_interna);
         $this->addRow(array($t_interna->toHTML()));
         $this->addRow(array($titulo), array('bgcolor' => '#FFFFFF'));
         $this->expandir($this->datos, 0, $t_interna);
         $this->addRow(array($t_interna->toHTML()));