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 'HTML/Image.php';
31 class 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 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 HTML_Image('/MECON/images/blanco.gif', str_repeat(' ', $n), $atr);
85 $margen = $margen->toHtml();
89 $imagen = new 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 // FIXME - sacar la style sheet de aca.
134 return '<link rel="stylesheet" href="'.$this->getCSS().'">'.parent::toHTML();
137 function expandirArray($dat, $n, $filtrarActivos)
140 foreach ($dat as $e) {
141 // Si no tiene ID o esta activo y se filtran los activos, se
142 // continua con el proximo item.
143 if (!@$e['id'] or $filtrarActivos and @$e['activo']) {
146 $array[$e['id']] = str_repeat(' ', $n) . $e['titulo'];
148 $array += $this->expandirArray($e['sub'], $n + 1, $filtrarActivos);
154 function toArray($filtrarActivos = true)
156 return $this->expandirArray($this->datos, 0, $filtrarActivos);
159 function expandirString($dat, $n, $filtrarActivos)
163 for ($i = 0; $i < $tot; $i++) {
165 // Si no tiene ID o esta activo y se filtran los activos, se
166 // continua con el proximo item.
167 if (!@$e['id'] or $filtrarActivos and @$e['activo']) {
170 $indent = str_repeat('| ', $n);
171 if ($i == ($tot - 1)) {
176 $str .= $indent . $e['titulo'] . "\n";
178 $str .= $this->expandirString($e['sub'], $n + 1, $filtrarActivos);
184 function toString($filtrarActivos = true)
186 return $this->expandirString($this->datos, 0, $filtrarActivos);
190 * Activa un nodo del árbol.
192 * @param int $id Id del nodo a modificar.
193 * @param bool $activo Nuevo valor, true si está activo, false si no.
195 * @return bool True si se pudo modificar.
197 function setActivo($id, $activo = 1) {
198 return $this->modificarNodo($this->datos, $id, 'activo', $activo);
202 * Modifica un nodo del array.
204 * @param array $datos Datos del árbol a modificar.
205 * @param int $id Id del elemento a modificar.
206 * @param string $key Clave del dato a modificar.
207 * @param mixed $val Nuevo valor.
209 * @return bool True si se pudo modificar.
211 function modificarNodo(&$datos, $id, $key, $val) {
212 foreach (array_keys($datos) as $k) {
213 if (@$datos[$k]['id'] == $id) {
214 $datos[$k][$key] = $val;
216 } elseif (@$datos[$k]['sub']
217 and $this->modificarNodo($datos[$k]['sub'], $id, $key, $val)) {