]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Dependencia.php
Agrego getDependencias
[mecon/meconlib.git] / lib / MECON / Dependencia.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4                                                        |
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group                                |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license,      |
9 // | that is bundled with this package in the file LICENSE, and is        |
10 // | available at through the world-wide-web at                           |
11 // | http://www.php.net/license/2_02.txt.                                 |
12 // | If you did not receive a copy of the PHP license and are unable to   |
13 // | obtain it through the world-wide-web, please send a note to          |
14 // | license@php.net so we can mail you a copy immediately.               |
15 // +----------------------------------------------------------------------+
16 // | Created: Thu Jun 19 16:54:08 2003
17 // | Author:  Gonzalo Merayo <gmeray@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // $Author$
22 // $URL$
23 // $Date$
24 // $Rev$
25 //
26
27 #require_once 'PEAR.php';
28 require_once 'MECON/Agente.php';
29 require_once 'DB.php';
30
31
32
33 // +X2C Class 145 :Dependencia
34 /**
35  * @access protected
36  */
37 class Dependencia {
38     /**
39      * @var    int $codep
40      * @access public
41      */
42     var $codep;
43
44     // ~X2C
45
46     // +X2C Operation 147
47     /**
48      * @param  int $codep 
49      *
50      * @return void
51      * @access public
52      */
53     function dependencia($codep) // ~X2C
54   {
55     $this->codep = $codep;
56   }
57   // -X2C
58
59     // +X2C Operation 148
60     /**
61      * @return void
62      * @access public
63      */
64     function getAgentes() // ~X2C
65   {
66 //Planta y becarios       
67       $agentes = array();
68       $dsn = 'mysql://intranet:intranet@intranet-db/novedades';
69       $db = DB::connect($dsn);
70       if (DB::isError($db)) die ($db->getMessage("No pudo conectarse a la base"));
71       $sql = "SELECT nrodoc 
72               FROM web003
73               WHERE codep = $this->codep";
74       $result = $db->query($sql);
75       if(DB::isError($result))
76         die($result->getMessage("query mal hecho"));
77       while($row = $result->fetchRow())
78         $agentes[] = new Agente($row[0]);
79 //Contratados     
80       $dsn = 'mysql://intranet:intranet@intranet-db/Contratados';
81       $db = DB::connect($dsn);
82       if (DB::isError($db)) die ($db->getMessage("No pudo conectarse a la base"));
83       $sql = "SELECT * 
84               FROM Contratados
85               WHERE codep = $this->codep";
86       $result = $db->query($sql);
87       if(DB::isError($result))
88         die($result->getMessage("query mal hecho"));
89       while($row = $result->fetchRow())
90         $agentes[] = new Agente($row[0]);
91       return $agentes;
92   }
93   // -X2C
94
95     // +X2C Operation 150
96     /**
97      * @return dependencia
98      * @access public
99      * @static
100      */
101     function getDependencias() // ~X2C
102     {
103       $dsn = 'mysql://intranet:intranet@intranet-db/CODEP';
104       $db = DB::connect($dsn);
105       if (DB::isError($db)) die ($db->getMessage("No pudo conectarse a la base"));
106       $sql = "SELECT codigo_actual 
107               FROM Dependencias
108               WHERE dependencia_esta_activa = 1";
109       $result = $db->query($sql);
110       if(DB::isError($result))
111         die($result->getMessage("query mal hecho"));
112       $dependencias[] = array();
113       while($row = $result->fetchRow())
114         $dependencias[] = $row[0];
115       return $dependencias;
116     }
117     // -X2C
118
119 } // -X2C Class :Dependencia
120 ?>