]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Arbol.php
BugFix. Estaba mal escrito el nombre del mes Septiembre.
[mecon/meconlib.git] / lib / MECON / HTML / Arbol.php
index e3a1012f09919744c8ec4b41590c5f21a39d8c60..cd47b0b1ecfd98378a1383d283f61058837380e2 100644 (file)
@@ -26,9 +26,9 @@ $Id$
 -----------------------------------------------------------------------------*/
 
 require_once 'HTML/Table.php';
-require_once 'HTML/Image.php';
+require_once 'MECON/HTML/Image.php';
 
-class HTML_Arbol extends HTML_Table
+class MECON_HTML_Arbol extends HTML_Table
 {
     var $datos;
     var $titulo;
@@ -41,7 +41,7 @@ class HTML_Arbol extends HTML_Table
      * @param string $titulo Título.
      * @param int $raiz Nodo raíz (de donde empezar a dibujar el árbol).
      */
-    function HTML_Arbol($datos, $titulo, $link_append = '')
+    function MECON_HTML_Arbol($datos, $titulo, $link_append = '')
     {
         parent::HTML_Table(array(
             'width'         => '132',
@@ -81,12 +81,12 @@ class HTML_Arbol extends HTML_Table
         );
         $margen = ' ';
         if ($n) {
-            $margen = new HTML_Image('/MECON/images/blanco.gif', str_repeat('  ', $n), $atr);
+            $margen = new MECON_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 = new MECON_HTML_Image($bullets[$n], @$alts[$n]);
             $imagen = $imagen->toHtml();
         }
         foreach ($dat as $e) {
@@ -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)