]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/HTML/Arbol.php
Primer intento de arreglar los bullets.
[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         $bullets = array(
64             '',
65             '/MECON/images/arbol_bullet_1.gif',
66             '/MECON/images/arbol_bullet_2.gif',
67             '/MECON/images/arbol_bullet_3.gif'
68         );
69         $alts = array(
70             '',
71             '*',
72             '-',
73             '·'
74         );
75         $classes = array('menu', 'menu1', 'menu1', 'menu2');
76         $tabulados = 7;
77         $atr = array(
78             'border' => '0',
79             'width'  => $n * $tabulados,
80             'height' => '10'
81         );
82         $margen = new HTML_Image('/MECON/images/blanco.gif', str_repeat('&nbsp;&nbsp;', $n), $atr);
83         $margen = $margen->toHtml();
84         $imagen = '';
85         if (@$bullets[$n]) {
86             $imagen = new HTML_Image($bullets[$n], @$alts[$n], $atr);
87             $imagen = $imagen->toHtml();
88         }
89         foreach ($dat as $e) {
90             $titulo = $margen.$imagen.$e['titulo'];
91             if(isset($e['activado']) && $e['activado'] != 0) $class = 'menu_activo';
92             else $class = $classes[$n];
93             if(!is_null($e['link'])) {
94                 $link = $e['link'];
95                 if ($this->link_append and @$e['id']) {
96                     $link .= $this->link_append . $e['id'];
97                 }
98                 $titulo = '<a href="'.$link.'" class="'.$class.'">'.$titulo.'</a>';
99             }
100             $tabla->addRow(array($titulo), array('class' => $class));
101             if(isset($e['sub'])) {
102                 $this->expandir($e['sub'], $n+1, $tabla);
103             }
104         }
105     }
106
107     function toHTML()
108     {
109         $this->setRowCount(0);
110         $t_interna = new HTML_Table(array(
111             'width'         =>'132',
112             'border'        => '0',
113             'cellspacing'   => '2',
114             'cellpadding'   => '0',
115             'class'         => 'bodytext'));
116         $titulo = new HTML_Table(array(
117             'width'         => '132',
118             'height'        => '26',
119             'border'        => '0',
120             'cellspacing'   => '0',
121             'cellpadding'   => '0',
122             'align'         => 'center',
123             'background'    => '/MECON/images/arbol_titulo.gif'));
124         $titulo->addRow(array($this->titulo), array(
125             'align' => 'center',
126             'class' => 'arboltitulo'));
127         $this->addRow(array($titulo), array('bgcolor' => '#FFFFFF'));
128         $this->expandir($this->datos, 0, $t_interna);
129         $this->addRow(array($t_interna->toHTML()));
130         // FIXME - sacar la style sheet de aca.
131         return '<link rel="stylesheet" href="'.$this->getCSS().'">'.parent::toHTML();
132     }
133
134     function expandirArray($dat, $n, $filtrarActivos)
135     {
136         $array = array();
137         foreach ($dat as $e) {
138             // Si no tiene ID o esta activo y se filtran los activos, se
139             // continua con el proximo item.
140             if (!@$e['id'] or $filtrarActivos and @$e['activado']) {
141                 continue;
142             }
143             $array[$e['id']] = str_repeat('&nbsp;&nbsp;&nbsp;', $n) . $e['titulo'];
144             if(@$e['sub']) {
145                 $array += $this->expandirArray($e['sub'], $n + 1, $filtrarActivos);
146             }
147         }
148         return $array;
149     }
150
151     function toArray($filtrarActivos = true)
152     {
153         return $this->expandirArray($this->datos, 0, $filtrarActivos);
154     }
155
156     /**
157      * Activa un nodo del árbol.
158      *
159      * @param int $id Id del nodo a modificar.
160      * @param bool $activado Nuevo valor, true si está activado, false si no.
161      *
162      * @return bool True si se pudo modificar.
163      */
164     function setActivado($id, $activado = 1) {
165         return $this->modificarNodo($this->datos, $id, 'activado', $activado);
166     }
167
168     /**
169      * Modifica un nodo del array.
170      *
171      * @param array $datos Datos del árbol a modificar.
172      * @param int $id Id del elemento a modificar.
173      * @param string $key Clave del dato a modificar.
174      * @param mixed $val Nuevo valor.
175      *
176      * @return bool True si se pudo modificar.
177      */
178     function modificarNodo(&$datos, $id, $key, $val) {
179         foreach (array_keys($datos) as $k) {
180             if (@$datos[$k]['id'] == $id) {
181                 $datos[$k][$key] = $val;
182                 return true;
183             } elseif (@$datos[$k]['sub']
184                     and $this->modificarNodo($datos[$k]['sub'], $id, $key, $val)) {
185                 return true;
186             }
187         }
188         return false;
189     }
190
191 };
192
193 ?>