]> 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 02813c988dc347d23ccada2d78e85bb834ca1820..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) {