]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/HTML/Arbol.php
- Se limpia (muy) mínimamente el código de Arbol y ArbolDB.
[mecon/meconlib.git] / lib / MECON / HTML / Arbol.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                              Ministerio de Economía
4                                     meconlib
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
7
8 meconlib is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
11 any later version.
12
13 meconlib is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16  
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA  02111-1307  USA
20 -------------------------------------------------------------------------------
21 Creado: jue jul 17 15:32:52 ART 2003
22 Autor:  Gonzalo Merayo <gmeray@mecon.gov.ar>
23         Leandro Lucarella <llucar@mecon.gov.ar>
24 -------------------------------------------------------------------------------
25 $Id$
26 -----------------------------------------------------------------------------*/
27
28 require_once 'HTML/Table.php';
29 require_once 'HTML/Image.php';
30
31 class HTML_Arbol extends HTML_Table
32 {
33     var $datos;
34     var $titulo;
35     var $link_append;
36
37     /**
38      * Constructor.
39      *
40      * @param array $datos Datos con los cuales construir el árbol.
41      * @param string $titulo Título.
42      * @param int $raiz Nodo raíz (de donde empezar a dibujar el árbol).
43      */
44     function HTML_Arbol($datos, $titulo, $link_append = '')
45     {
46         parent::HTML_Table(array(
47             'width'         => '132',
48             'border'        => '0',
49             'cellspacing'   => '0',
50             'cellpadding'   => '0',
51             'bgcolor'       => '#003868'));
52         $this->datos        = $datos;
53         $this->titulo       = $titulo;
54         $this->link_append  = $link_append;
55     }
56
57     function getCSS() {
58         return '/MECON/css/arbol';
59     }
60
61     function expandir($dat, $n, &$tabla)
62     {
63         $imagen = '';
64         $bullets = array(
65             '',
66             '/MECON/images/arbol_bullet_1.gif',
67             '/MECON/images/arbol_bullet_2.gif',
68             '/MECON/images/arbol_bullet_3.gif'
69         );
70         $tabulados = 7;
71         $classes = array('menu', 'menu1', 'menu1', 'menu2');
72         
73         $atr = array('border' => '0',
74                      'width'  => $n * $tabulados,
75                  'height' => '10');
76         $imagen =& new HTML_Image(@$bullets[$n] ? $bullets[$n] : '', 'bullet', $atr);
77         foreach ($dat as $e) {
78             $titulo = $imagen->toHTML().$e['titulo'];
79             if(isset($e['activado']) && $e['activado'] != 0) $class = 'menu_activo';
80             else $class = $classes[$n];
81             if(!is_null($e['link'])) {
82                 $link = $e['link'];
83                 if ($this->link_append and @$e['id']) {
84                     $link .= $this->link_append . $e['id'];
85                 }
86                 $titulo = '<a href="'.$link.'" class="'.$class.'">'.$titulo.'</a>';
87             }
88             $tabla->addRow(array($titulo), array('class' => $class));
89             if(isset($e['sub'])) {
90                 $this->expandir($e['sub'], $n+1, $tabla);
91             }
92         }
93     }
94
95     function toHTML()
96     {
97         $this->setRowCount(0);
98         $t_interna = new HTML_Table(array(
99             'width'         =>'132',
100             'border'        => '0',
101             'cellspacing'   => '2',
102             'cellpadding'   => '0',
103             'class'         => 'bodytext'));
104         $titulo = new HTML_Table(array(
105             'width'         => '132',
106             'height'        => '26',
107             'border'        => '0',
108             'cellspacing'   => '0',
109             'cellpadding'   => '0',
110             'align'         => 'center',
111             'background'    => '/MECON/images/arbol_titulo.gif'));
112         $titulo->addRow(array($this->titulo), array(
113             'align' => 'center',
114             'class' => 'arboltitulo'));
115         $this->addRow(array($titulo), array('bgcolor' => '#FFFFFF'));
116         $this->expandir($this->datos, 0, $t_interna);
117         $this->addRow(array($t_interna->toHTML()));
118         return parent::toHTML();
119     }
120
121     function expandirArray($dat, $n, $filtrarActivos)
122     {
123         $array = array();
124         foreach ($dat as $e) {
125             // Si no tiene ID o esta activo y se filtran los activos, se
126             // continua con el proximo item.
127             if (!@$e['id'] or $filtrarActivos and @$e['activado']) {
128                 continue;
129             }
130             $array[$e['id']] = str_repeat('&nbsp;&nbsp;&nbsp;', $n) . $e['titulo'];
131             if(@$e['sub']) {
132                 $array += $this->expandirArray($e['sub'], $n + 1, $filtrarActivos);
133             }
134         }
135         return $array;
136     }
137
138     function toArray($filtrarActivos = true)
139     {
140         return $this->expandirArray($this->datos, 0, $filtrarActivos);
141     }
142
143     /**
144      * Activa un nodo del árbol.
145      *
146      * @param int $id Id del nodo a modificar.
147      * @param bool $activado Nuevo valor, true si está activado, false si no.
148      *
149      * @return bool True si se pudo modificar.
150      */
151     function setActivado($id, $activado = 1) {
152         return $this->modificarNodo($this->datos, $id, 'activado', $activado);
153     }
154
155     /**
156      * Modifica un nodo del array.
157      *
158      * @param array $datos Datos del árbol a modificar.
159      * @param int $id Id del elemento a modificar.
160      * @param string $key Clave del dato a modificar.
161      * @param mixed $val Nuevo valor.
162      *
163      * @return bool True si se pudo modificar.
164      */
165     function modificarNodo(&$datos, $id, $key, $val) {
166         foreach (array_keys($datos) as $k) {
167             if (@$datos[$k]['id'] == $id) {
168                 $datos[$k][$key] = $val;
169                 return true;
170             } elseif (@$datos[$k]['sub']
171                     and $this->modificarNodo($datos[$k]['sub'], $id, $key, $val)) {
172                 return true;
173             }
174         }
175         return false;
176     }
177
178 };
179
180 ?>