]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/HTML/ArbolDB.php
Cambie el comportamiento de setRendererOpts. Ahora se comporta como un update. Hice...
[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         parent::MECON_HTML_Arbol(array(), $titulo, $link_append);
148         $this->datos = $this->BuscarHijos(0);
149     }
150      
151     /**
152      * DESC
153      *
154      * @param TIPO $id DESC
155      *
156      * @return TIPO
157      * @access public
158      */
159     function BuscarHijos($id)
160     {
161         $sql = "SELECT $this->nombre, $this->id ";
162         if($this->link)
163             $sql .=  ", $this->link ";
164         $sql .=  "FROM $this->tabla ";
165         if($this->padre or $this->where)
166           $sql .= 'WHERE ';
167         if($this->padre) {
168           $sql .= "$this->padre = '$id'";
169           if ($this->where)
170             $sql .= ' AND';
171         } elseif ($this->where)
172           $sql .= $this->where;
173         $sql .= $this->order;
174         $result = $this->db->query($sql);
175         if(DB::isError($result))
176           die($result->getMessage());
177         $dat = array();
178         while($row = $result->fetchRow())
179         {
180             $titulo = $row[0];
181             $id = $row[1];
182             if(!$this->padre) $sub = array();
183             else $sub = $this->BuscarHijos($id);
184             $link = strval(@$row[2]);
185             $d = array(
186             'titulo'=> $titulo,
187             'link' => $link,
188             'id' => $id,
189             'sub' => $sub 
190             );
191         if (!is_null($this->id_activo) and $id == $this->id_activo) {
192             $d['activo'] = 1;
193         }
194         $dat[] = $d;
195         }
196         return $dat;
197
198     }
199
200 }
201
202 ?>