]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MLIB/Legajos/Estudios.php
Se cambiar MECON por MLIB.
[mecon/meconlib.git] / lib / MLIB / Legajos / Estudios.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: Mon Jul 7 17:22:10 2003                                    |
24 // | Autor:  Matías Sklar <msklar@mecon.gov.ar>                         |
25 // +--------------------------------------------------------------------+
26 //
27 // $Id: Intranet_Legajos_Estudios.php 23 2003-07-15 18:56:42Z msklar $
28 //
29
30
31
32 // +X2C includes
33 require_once 'DB.php';
34 // ~X2C
35
36 // +X2C Class 163 :Servicios_Legajos_Estudios
37 /**
38  * Estudios del agente
39  *
40  * @access public
41  */
42 // XXX - Pregunta llucar: POR QUE CATSO HEREDA DE DB???
43 class MECON_Legajos_Estudios extends DB {
44     /**
45      * @var    int $agente
46      * @access public
47      */
48     var $agente;
49
50     /**
51      * @var    int $datos
52      * @access public
53      */
54     var $datos;
55
56     // ~X2C
57
58     // +X2C Operation 166
59     /**
60      * @param  int $agente 
61      *
62      * @return void
63      * @access public
64      */
65     function MECON_Legajos_Estudios($db,$agente) // ~X2C
66     {
67         $this->agente = $agente;
68         $sql = "SELECT * 
69                 FROM novedades.web005
70                 WHERE documento = $agente";
71         $result = $db->query($sql);
72         if (DB::isError($result))
73             trigger_error($result->getMessage('Query mal hecho'), E_USER_ERROR);
74
75         for ($fila = 0; $fila < $result->numRows(); $fila++) {
76             $this->datos[$fila] = $result->fetchRow(DB_FETCHMODE_ASSOC);
77         }
78     }
79     // -X2C
80
81     // +X2C Operation 172
82     /**
83      * @return void
84      * @access public
85      */
86     function getEstudios() // ~X2C
87     {
88         return $this->datos;
89     }
90     // -X2C
91
92 } // -X2C Class :Servicios_Legajos_Estudios
93 ?>