2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // | Ministerio de EconomÃa |
6 // +--------------------------------------------------------------------+
7 // | This file is part of Intranet. |
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. |
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. |
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: Gonzalo Merayo <gmeray@mecon.gov.ar> |
25 // +--------------------------------------------------------------------+
33 require_once 'DB.php';
36 // +X2C Class 155 :Intranet_Legajos_ExperienciaLaboral
38 * Antigedad laboral del agente
42 class Intranet_Legajos_ExperienciaLaboral extends DB {
50 * @var int $antiguedad
56 * @var int $experiencia
70 function Intranet_Legajos_ExperienciaLaboral($agente)// ~X2C
72 $this->agente = $agente;
73 $dsn = 'mysql://intranet:intranet@intranet-db/novedades';
74 $db = DB::connect($dsn);
76 die ($db->getMessage("No pudo conectarse a la base"));
79 WHERE nrodoc = $agente
81 $result_exp = $db->query($sql);
82 if (DB::isError($result_exp))
83 die ($result_exp->getMessage("Query mal hecho"));
85 for ($fila = 0; $fila < $result_exp->numRows(); $fila++) {
86 $this->experiencia[$fila] = $result_exp->fetchRow(DB_FETCHMODE_ASSOC);
91 WHERE nrodoc = $agente";
92 $result_ant = $db->query($sql);
93 if (DB::isError($result_ant))
94 die ($result_ant->getMessage("Query mal hecho"));
96 if ($result_ant->numRows() > 0) {
97 $this->antiguedad = $result_ant->fetchRow(DB_FETCHMODE_ASSOC);
103 // +X2C Operation 160
108 function getAntiguedad()// ~X2C
110 return $this->antiguedad;
114 // +X2C Operation 161
119 function getExperiencia()// ~X2C
121 return $this->experiencia;
125 } // -X2C Class :Intranet_Legajos_ExperienciaLaboral