]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/HTML/ArbolDB.php
177ad1451d2b7f7d7c36d4d5e699547ea692f88b
[mecon/meconlib.git] / lib / MECON / HTML / ArbolDB.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:33:41 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 'MECON/HTML/Arbol.php';
29 require_once 'DB.php';
30
31 /**
32  * DESC
33  *
34  * @access public
35  */
36 class MECON_HTML_ArbolDB extends MECON_HTML_Arbol
37 {
38     
39     /**
40      * DESC
41      *
42      * @var string $padre
43      * @access public
44      */
45     var $padre = '';
46     
47     /**
48      * DESC
49      *
50      * @var TIPO $tabla
51      * @access public
52      */
53     var $tabla;
54     
55     /**
56      * DESC
57      *
58      * @var string $nombre
59      * @access public
60      */
61     var $nombre;
62     
63     /**
64      * DESC
65      *
66      * @var TIPO $id   
67      * @access public
68      */
69     var $id;
70     
71     /**
72      * DESC
73      *
74      * @var TIPO $id_activo
75      * @access public
76      */
77     var $id_activo;
78     
79     /**
80      * DESC
81      *
82      * @var string $link 
83      * @access public
84      */
85     var $link = '';
86     
87     /**
88      * DESC
89      *
90      * @var string $link_append
91      * @access public
92      */
93     var $link_append = '';
94     
95     /**
96      * DESC
97      *
98      * @var string $where
99      * @access public
100      */
101     var $where = '';
102     
103     /**
104      * DESC
105      *
106      * @var string $order 
107      * @access public
108      */
109     var $order = '';
110     
111     /**
112      * DESC
113      *
114      * @var DB $db   
115      * @access public
116      */
117     var $db;
118     
119     /**
120      * Constructor
121      *
122      * @param TIPO $dbdata DESC
123      * @param TIPO $titulo DESC
124      * @param string $link_append DESC
125      *
126      * @return void
127      * @access public
128      */
129     function MECON_HTML_ArbolDB($dbdata, $titulo, $link_append = '')
130     {
131         if(isset($dbdata['id_padre']))
132             $this->padre = $dbdata['id_padre'];
133         $this->tabla = $dbdata['tabla'];
134         $this->nombre = $dbdata['nombre'];
135         $this->id = $dbdata['id'];
136         $this->id_activo = @$dbdata['id_activo'];
137         // FIXME - Deprecated!
138         if(isset($dbdata['prepend_link']))
139             $link_append = $dbdata['prepend_link']; 
140         if(isset($dbdata['link']))
141             $this->link = $dbdata['link']; 
142         if(isset($dbdata['where']))
143             $this->where = $dbdata['where'];
144         if(isset($dbdata['order']))
145             $this->order = ' ORDER BY '.$dbdata['nombre'].' '.$dbdata['order']; 
146         $this->db = $dbdata['db']; 
147
148         $this->expandir = array($this->id_activo);
149         if(isset($this->id_activo))
150         {
151           $id = $this->id_activo;
152           while($id != 0)
153           {
154             $sql = "SELECT $this->padre
155                     FROM $this->tabla
156                     WHERE $this->id = '".$id."'";
157             $id = $this->db->getOne($sql);
158             $this->expandir[] = $id;
159           }
160         }
161
162         parent::MECON_HTML_Arbol(array(), $titulo, $link_append);
163         $this->datos = $this->BuscarHijos(0);
164     }
165      
166     /**
167      * DESC
168      *
169      * @param TIPO $id DESC
170      *
171      * @return TIPO
172      * @access public
173      */
174     function BuscarHijos($id)
175     {
176         $sql = "SELECT $this->nombre, $this->id ";
177         if($this->link)
178             $sql .=  ", $this->link ";
179         $sql .=  "FROM $this->tabla ";
180         if($this->padre or $this->where)
181           $sql .= 'WHERE ';
182         if($this->padre) {
183           $sql .= "$this->padre = '$id'";
184           if ($this->where)
185             $sql .= ' AND';
186         } elseif ($this->where)
187           $sql .= $this->where;
188         $sql .= $this->order;
189         $result = $this->db->query($sql);
190         if(DB::isError($result))
191           die($result->getMessage());
192         $dat = array();
193         while($row = $result->fetchRow())
194         {
195             $titulo = $row[0];
196             $id = $row[1];
197             if(!$this->padre || !in_array($id, $this->expandir)) $sub = array();
198             else $sub = $this->BuscarHijos($id);
199             $link = strval(@$row[2]);
200             $d = array(
201             'titulo'=> $titulo,
202             'link' => $link,
203             'id' => $id,
204             'sub' => $sub 
205             );
206         if (!is_null($this->id_activo) and $id == $this->id_activo) {
207             $d['activo'] = 1;
208         }
209         $dat[] = $d;
210         }
211         return $dat;
212
213     }
214
215 }
216
217 ?>