]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Arbol.php
El contenido no se agrega mas como referencia.
[mecon/meconlib.git] / lib / MECON / HTML / Arbol.php
index 5ba8f0a62e2344f3e75b0688beb6057157150086..e33e65d90a55890f36d58072e14bd4a965467591 100644 (file)
@@ -26,12 +26,38 @@ $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
+/**
+ * DESC
+ *
+ * @access public
+ */
+class MECON_HTML_Arbol extends HTML_Table
 {
 {
+
+    /**
+     * DESC
+     *
+     * @var TIPO $datos  
+     * @access public
+     */
     var $datos;
     var $datos;
+
+    /**
+     * DESC
+     *
+     * @var TIPO $titulo  
+     * @access public
+     */
     var $titulo;
     var $titulo;
+
+    /**
+     * DESC
+     *
+     * @var string $link_append
+     * @access public
+     */
     var $link_append;
 
     /**
     var $link_append;
 
     /**
@@ -39,9 +65,12 @@ class HTML_Arbol extends HTML_Table
      *
      * @param array $datos Datos con los cuales construir el árbol.
      * @param string $titulo Título.
      *
      * @param array $datos Datos con los cuales construir el árbol.
      * @param string $titulo Título.
-     * @param int $raiz Nodo raíz (de donde empezar a dibujar el árbol).
+     * @param string $link_append DESC.
+     *
+     * @return void
+     * @access public
      */
      */
-    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',
@@ -54,10 +83,26 @@ class HTML_Arbol extends HTML_Table
         $this->link_append  = $link_append;
     }
 
         $this->link_append  = $link_append;
     }
 
+    /**
+     * Devuelve el path del stylesheet de esta clase
+     *
+     * @retur string
+     * @access public
+     */
     function getCSS() {
         return '/MECON/css/arbol';
     }
 
     function getCSS() {
         return '/MECON/css/arbol';
     }
 
+    /**
+     * DESC
+     *
+     * @param TIPO $dat DESC
+     * @param TIPO $n DESC
+     * @param TIPO &$tabla DESC
+     *
+     * @return TIPO
+     * @access public
+     */
     function expandir($dat, $n, &$tabla)
     {
         $bullets = array(
     function expandir($dat, $n, &$tabla)
     {
         $bullets = array(
@@ -77,16 +122,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) {
@@ -107,6 +152,12 @@ class HTML_Arbol extends HTML_Table
         }
     }
 
         }
     }
 
+    /**
+     * Devuelve el html a imprimir
+     *
+     * @return string
+     * @access public
+     */
     function toHTML()
     {
         $this->setRowCount(0);
     function toHTML()
     {
         $this->setRowCount(0);
@@ -130,10 +181,19 @@ 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();
     }
 
     }
 
+    /**
+     * DESC
+     *
+     * @param TIPO $dat DESC
+     * @param TIPO $n DESC
+     * @param TIPO $filtarActivos DESC
+     *
+     * @return array
+     * @access public
+     */
     function expandirArray($dat, $n, $filtrarActivos)
     {
         $array = array();
     function expandirArray($dat, $n, $filtrarActivos)
     {
         $array = array();
@@ -151,11 +211,67 @@ class HTML_Arbol extends HTML_Table
         return $array;
     }
 
         return $array;
     }
 
+    /**
+     * DESC
+     *
+     * @param bool $filtrarActivos DESC
+     *
+     * @return array
+     * @access public
+     */
     function toArray($filtrarActivos = true)
     {
         return $this->expandirArray($this->datos, 0, $filtrarActivos);
     }
 
     function toArray($filtrarActivos = true)
     {
         return $this->expandirArray($this->datos, 0, $filtrarActivos);
     }
 
+    /**
+     * DESC
+     *
+     * @param TIPO $dat DESC
+     * @param TIPO $n DESC
+     * @param TIPO $filtarActivos DESC
+     *
+     * @return string
+     * @access public
+     */
+    function expandirString($dat, $n, $filtrarActivos)
+    {
+        $str = '';
+        $tot = count($dat);
+        for ($i = 0; $i < $tot; $i++) {
+            $e = $dat[$i];
+            // Si no tiene ID o esta activo y se filtran los activos, se
+            // continua con el proximo item.
+            if (!@$e['id'] or $filtrarActivos and @$e['activo']) {
+                continue;
+            }
+            $indent = str_repeat('|  ', $n);
+            if ($i == ($tot - 1)) {
+                $indent .= '`- ';
+            } else {
+                $indent .= '|- ';
+            }
+            $str .= $indent . $e['titulo'] . "\n";
+            if(@$e['sub']) {
+                $str .= $this->expandirString($e['sub'], $n + 1, $filtrarActivos);
+            }
+        }
+        return $str;
+    }
+
+    /**
+     * DESC
+     *
+     * @param bool $filtrarActivos DESC
+     *
+     * @return string
+     * @access public
+     */
+    function toString($filtrarActivos = true)
+    {
+        return $this->expandirString($this->datos, 0, $filtrarActivos);
+    }
+
     /**
      * Activa un nodo del árbol.
      *
     /**
      * Activa un nodo del árbol.
      *
@@ -163,6 +279,7 @@ class HTML_Arbol extends HTML_Table
      * @param bool $activo Nuevo valor, true si está activo, false si no.
      *
      * @return bool True si se pudo modificar.
      * @param bool $activo Nuevo valor, true si está activo, false si no.
      *
      * @return bool True si se pudo modificar.
+     * @access public
      */
     function setActivo($id, $activo = 1) {
         return $this->modificarNodo($this->datos, $id, 'activo', $activo);
      */
     function setActivo($id, $activo = 1) {
         return $this->modificarNodo($this->datos, $id, 'activo', $activo);
@@ -177,6 +294,7 @@ class HTML_Arbol extends HTML_Table
      * @param mixed $val Nuevo valor.
      *
      * @return bool True si se pudo modificar.
      * @param mixed $val Nuevo valor.
      *
      * @return bool True si se pudo modificar.
+     * @access public
      */
     function modificarNodo(&$datos, $id, $key, $val) {
         foreach (array_keys($datos) as $k) {
      */
     function modificarNodo(&$datos, $id, $key, $val) {
         foreach (array_keys($datos) as $k) {