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';
36 class MECON_HTML_Arbol extends HTML_Table
58 * @var string $link_append
66 * @param array $datos Datos con los cuales construir el árbol.
67 * @param string $titulo Título.
68 * @param string $link_append DESC.
73 function MECON_HTML_Arbol($datos, $titulo, $link_append = '')
75 parent::HTML_Table(array(
80 'bgcolor' => '#003868'));
81 $this->datos = $datos;
82 $this->titulo = $titulo;
83 $this->link_append = $link_append;
87 * Devuelve el path del stylesheet de esta clase
93 return '/MECON/css/arbol';
99 * @param TIPO $dat DESC
100 * @param TIPO $n DESC
101 * @param TIPO &$tabla DESC
106 function expandir($dat, $n, &$tabla)
110 '/MECON/images/arbol_bullet_1.gif',
111 '/MECON/images/arbol_bullet_2.gif',
112 '/MECON/images/arbol_bullet_3.gif'
120 $classes = array('menu', 'menu1', 'menu1', 'menu2');
124 'width' => $n * $tabulados,
129 $margen = new MECON_HTML_Image('/MECON/images/blanco.gif', str_repeat(' ', $n), $atr);
130 $margen = $margen->toHtml();
134 $imagen = new MECON_HTML_Image($bullets[$n], @$alts[$n]);
135 $imagen = $imagen->toHtml();
137 foreach ($dat as $e) {
138 $titulo = $margen.$imagen.$e['titulo'];
139 if(isset($e['activo']) && $e['activo'] != 0) $class = 'menu_activo';
140 else $class = $classes[$n];
141 if(!is_null($e['link'])) {
143 if ($this->link_append and @$e['id']) {
144 $link .= $this->link_append . $e['id'];
146 $titulo = '<a href="'.$link.'" class="'.$class.'">'.$titulo.'</a>';
148 $tabla->addRow(array($titulo), array('class' => $class));
149 if(isset($e['sub'])) {
150 $this->expandir($e['sub'], $n+1, $tabla);
156 * Devuelve el html a imprimir
163 $this->setRowCount(0);
164 $t_interna = new HTML_Table(array(
167 'cellspacing' => '2',
168 'cellpadding' => '0',
169 'class' => 'bodytext'));
170 $titulo = new HTML_Table(array(
174 'cellspacing' => '0',
175 'cellpadding' => '0',
177 'background' => '/MECON/images/arbol_titulo.gif'));
178 $titulo->addRow(array($this->titulo), array(
180 'class' => 'arboltitulo'));
181 $this->addRow(array($titulo), array('bgcolor' => '#FFFFFF'));
182 $this->expandir($this->datos, 0, $t_interna);
183 $this->addRow(array($t_interna->toHTML()));
184 return parent::toHTML();
190 * @param TIPO $dat DESC
191 * @param TIPO $n DESC
192 * @param TIPO $filtarActivos DESC
197 function expandirArray($dat, $n, $filtrarActivos)
200 foreach ($dat as $e) {
201 // Si no tiene ID o esta activo y se filtran los activos, se
202 // continua con el proximo item.
203 if (!@$e['id'] or $filtrarActivos and @$e['activo']) {
206 $array[$e['id']] = str_repeat(' ', $n) . $e['titulo'];
208 $array += $this->expandirArray($e['sub'], $n + 1, $filtrarActivos);
217 * @param bool $filtrarActivos DESC
222 function toArray($filtrarActivos = true)
224 return $this->expandirArray($this->datos, 0, $filtrarActivos);
230 * @param TIPO $dat DESC
231 * @param TIPO $n DESC
232 * @param TIPO $filtarActivos DESC
237 function expandirString($dat, $n, $filtrarActivos)
241 for ($i = 0; $i < $tot; $i++) {
243 // Si no tiene ID o esta activo y se filtran los activos, se
244 // continua con el proximo item.
245 if (!@$e['id'] or $filtrarActivos and @$e['activo']) {
248 $indent = str_repeat('| ', $n);
249 if ($i == ($tot - 1)) {
254 $str .= $indent . $e['titulo'] . "\n";
256 $str .= $this->expandirString($e['sub'], $n + 1, $filtrarActivos);
265 * @param bool $filtrarActivos DESC
270 function toString($filtrarActivos = true)
272 return $this->expandirString($this->datos, 0, $filtrarActivos);
276 * Activa un nodo del árbol.
278 * @param int $id Id del nodo a modificar.
279 * @param bool $activo Nuevo valor, true si está activo, false si no.
281 * @return bool True si se pudo modificar.
284 function setActivo($id, $activo = 1) {
285 return $this->modificarNodo($this->datos, $id, 'activo', $activo);
289 * Modifica un nodo del array.
291 * @param array $datos Datos del árbol a modificar.
292 * @param int $id Id del elemento a modificar.
293 * @param string $key Clave del dato a modificar.
294 * @param mixed $val Nuevo valor.
296 * @return bool True si se pudo modificar.
299 function modificarNodo(&$datos, $id, $key, $val) {
300 foreach (array_keys($datos) as $k) {
301 if (@$datos[$k]['id'] == $id) {
302 $datos[$k][$key] = $val;
304 } elseif (@$datos[$k]['sub']
305 and $this->modificarNodo($datos[$k]['sub'], $id, $key, $val)) {