]> git.llucax.com Git - mecon/intranet.git/blob - sistema/local_lib/Servicios/Bandas/Buscador.php
Agregué una clase Buscador que sirve para hacer todas las búsquedas de bandas
[mecon/intranet.git] / sistema / local_lib / Servicios / Bandas / Buscador.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // |                      Ministerio de Economía                        |
5 // |                             Intranet                              |
6 // +--------------------------------------------------------------------+
7 // | This file is part of Intranet.                                    |
8 // |                                                                    |
9 // | Intranet is free software; you can redistribute it and/or modify  |
10 // | it under the terms of the GNU General Public License as published  |
11 // | by the Free Software Foundation; either version 2 of the License,  |
12 // | or (at your option) any later version.                             |
13 // |                                                                    |
14 // | Intranet is distributed in the hope that it will be useful, but   |
15 // | WITHOUT ANY WARRANTY; without even the implied warranty of         |
16 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
17 // | General Public License for more details.                           |
18 // |                                                                    |
19 // | You should have received a copy of the GNU General Public License  |
20 // | along with Hooks; if not, write to the Free Software Foundation,   |
21 // | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA      |
22 // +--------------------------------------------------------------------+
23 // | Creado: Thu Sep 11 20:06:16 2003                                 
24 // | Autor:  Matias Sklar <msklar@mecon.gov.ar>
25 // +--------------------------------------------------------------------+
26 //
27 // $Id$
28 //
29
30
31
32
33 // +X2C Class 231 :Servicios_Bandas_Buscador
34 /**
35  * Clase que se encarga de realizar todas las búsquedas provenientes de formularios
36  *
37  * @access public
38  */
39 class Servicios_Bandas_Buscador {
40     /**
41      * Los meses que hay cargados en la base de datos
42      *
43      * @var    array $meses
44      * @access private
45      */
46     var $_meses = NULL;
47
48     /**
49      * @var    int $db
50      * @access private
51      */
52     var $_db;
53
54     // ~X2C
55
56     // +X2C Operation 233
57     /**
58      * Devuelve todos los meses cargados en la base de datos
59      *
60      * @param  int $db El handler de conexión a la base de datos
61      *
62      * @return array()
63      * @access public
64      * @static
65      */
66     function getMeses($db) // ~X2C
67     {
68                 $sql = "select distinct mes, anio from PrecalculoMensual order by anio desc, mes desc";
69                 $result = $db->getAll($sql);
70                 if(DB::isError($result))
71                         die($result->getMessage("query mal hecho"));
72                 return $result;
73     }
74     // -X2C
75
76 } // -X2C Class :Servicios_Bandas_Buscador
77 ?>