1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
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)
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.
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 -------------------------------------------------------------------------------
26 -----------------------------------------------------------------------------*/
28 require_once 'HTML/Table.php';
29 require_once 'MECON/HTML/Image.php';
31 class MECON_HTML_Arbol extends HTML_Table
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).
44 function MECON_HTML_Arbol($datos, $titulo, $link_append = '')
46 parent::HTML_Table(array(
51 'bgcolor' => '#003868'));
52 $this->datos = $datos;
53 $this->titulo = $titulo;
54 $this->link_append = $link_append;
58 return '/MECON/css/arbol';
61 function expandir($dat, $n, &$tabla)
65 '/MECON/images/arbol_bullet_1.gif',
66 '/MECON/images/arbol_bullet_2.gif',
67 '/MECON/images/arbol_bullet_3.gif'
75 $classes = array('menu', 'menu1', 'menu1', 'menu2');
79 'width' => $n * $tabulados,
84 $margen = new MECON_HTML_Image('/MECON/images/blanco.gif', str_repeat(' ', $n), $atr);
85 $margen = $margen->toHtml();
89 $imagen = new MECON_HTML_Image($bullets[$n], @$alts[$n]);
90 $imagen = $imagen->toHtml();
92 foreach ($dat as $e) {
93 $titulo = $margen.$imagen.$e['titulo'];
94 if(isset($e['activo']) && $e['activo'] != 0) $class = 'menu_activo';
95 else $class = $classes[$n];
96 if(!is_null($e['link'])) {
98 if ($this->link_append and @$e['id']) {
99 $link .= $this->link_append . $e['id'];
101 $titulo = '<a href="'.$link.'" class="'.$class.'">'.$titulo.'</a>';
103 $tabla->addRow(array($titulo), array('class' => $class));
104 if(isset($e['sub'])) {
105 $this->expandir($e['sub'], $n+1, $tabla);
112 $this->setRowCount(0);
113 $t_interna = new HTML_Table(array(
116 'cellspacing' => '2',
117 'cellpadding' => '0',
118 'class' => 'bodytext'));
119 $titulo = new HTML_Table(array(
123 'cellspacing' => '0',
124 'cellpadding' => '0',
126 'background' => '/MECON/images/arbol_titulo.gif'));
127 $titulo->addRow(array($this->titulo), array(
129 'class' => 'arboltitulo'));
130 $this->addRow(array($titulo), array('bgcolor' => '#FFFFFF'));
131 $this->expandir($this->datos, 0, $t_interna);
132 $this->addRow(array($t_interna->toHTML()));
133 return parent::toHTML();
136 function expandirArray($dat, $n, $filtrarActivos)
139 foreach ($dat as $e) {
140 // Si no tiene ID o esta activo y se filtran los activos, se
141 // continua con el proximo item.
142 if (!@$e['id'] or $filtrarActivos and @$e['activo']) {
145 $array[$e['id']] = str_repeat(' ', $n) . $e['titulo'];
147 $array += $this->expandirArray($e['sub'], $n + 1, $filtrarActivos);
153 function toArray($filtrarActivos = true)
155 return $this->expandirArray($this->datos, 0, $filtrarActivos);
158 function expandirString($dat, $n, $filtrarActivos)
162 for ($i = 0; $i < $tot; $i++) {
164 // Si no tiene ID o esta activo y se filtran los activos, se
165 // continua con el proximo item.
166 if (!@$e['id'] or $filtrarActivos and @$e['activo']) {
169 $indent = str_repeat('| ', $n);
170 if ($i == ($tot - 1)) {
175 $str .= $indent . $e['titulo'] . "\n";
177 $str .= $this->expandirString($e['sub'], $n + 1, $filtrarActivos);
183 function toString($filtrarActivos = true)
185 return $this->expandirString($this->datos, 0, $filtrarActivos);
189 * Activa un nodo del árbol.
191 * @param int $id Id del nodo a modificar.
192 * @param bool $activo Nuevo valor, true si está activo, false si no.
194 * @return bool True si se pudo modificar.
196 function setActivo($id, $activo = 1) {
197 return $this->modificarNodo($this->datos, $id, 'activo', $activo);
201 * Modifica un nodo del array.
203 * @param array $datos Datos del árbol a modificar.
204 * @param int $id Id del elemento a modificar.
205 * @param string $key Clave del dato a modificar.
206 * @param mixed $val Nuevo valor.
208 * @return bool True si se pudo modificar.
210 function modificarNodo(&$datos, $id, $key, $val) {
211 foreach (array_keys($datos) as $k) {
212 if (@$datos[$k]['id'] == $id) {
213 $datos[$k][$key] = $val;
215 } elseif (@$datos[$k]['sub']
216 and $this->modificarNodo($datos[$k]['sub'], $id, $key, $val)) {