]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Arbol.php
Se agrega un estilo a la tabla (impresion) pedido por Myrna
[mecon/meconlib.git] / lib / MECON / HTML / Arbol.php
index d86c49e8bf5181ee7ebf56621850fe1e6770d06b..cd47b0b1ecfd98378a1383d283f61058837380e2 100644 (file)
@@ -26,9 +26,9 @@ $Id$
 -----------------------------------------------------------------------------*/
 
 require_once 'HTML/Table.php';
 -----------------------------------------------------------------------------*/
 
 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;
 {
     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).
      */
      * @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',
     {
         parent::HTML_Table(array(
             'width'         => '132',
@@ -77,16 +77,16 @@ class HTML_Arbol extends HTML_Table
         $atr = array(
             'border' => '0',
             'width'  => $n * $tabulados,
         $atr = array(
             'border' => '0',
             'width'  => $n * $tabulados,
-            'height' => '10'
+            'height' => '1'
         );
         $margen = ' ';
         if ($n) {
         );
         $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]) {
             $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) {
             $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()));
         $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)
     }
 
     function expandirArray($dat, $n, $filtrarActivos)