2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // | Ministerio de Economía |
5 // | AI (Administrador de Intranet) |
6 // +--------------------------------------------------------------------+
7 // | This file is part of AI. |
9 // | AI 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 // | AI 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: Tue Jun 24 16:22:07 2003 |
24 // | Autor: Leandro Lucarella <llucar@mecon.gov.ar> |
25 // +--------------------------------------------------------------------+
31 require_once 'AI/DBObject.php';
34 require_once 'AI/Error.php';
37 * Archivo de configuración.
39 define('AI_SISTEMA_CONFFILE', dirname(__FILE__).'/Sistema.ini');
41 // +X2C Class 416 :AI_Sistema
48 class AI_Sistema extends AI_DBObject {
50 * ID del sistema (ID en SAMURAI).
58 * Nombre del sistema (slo de lectura, extra?o de SAMURAI).
66 * Descripcin del sistema (slo de lectura, extra?o de SAMURAI).
68 * @var string $descripcion
71 var $descripcion = '';
82 * Enlace a donde se encuentra el sistema.
90 * Enlace a la ayuda del sistema.
92 * @var string $link_ayuda
98 * Indica si esta habilitado.
100 * @var bool $habilitado
103 var $habilitado = true;
107 // +X2C Operation 466
109 * @param int $sistema ID del sistema.
114 function AI_Sistema($sistema = 0) // ~X2C
116 parent::AI_DBObject($sistema, AI_SISTEMA_CONFFILE);
120 // +X2C Operation 459
122 * @param DB $db DB donde guardar.
123 * @param bool $nuevo Si es true, se fuerza a guardar el servicio como nuevo.
128 function guardar($db, $nuevo = false) // ~X2C
131 'icono' => $this->icono,
132 'link' => $this->link,
133 'link_ayuda' => $this->link_ayuda,
134 'habilitado' => $this->habilitado ? 1 : 0,
136 $err = parent::guardar($db, $datos, $nuevo);
137 if (PEAR::isError($err)) {
143 // +X2C Operation 528
145 * Obtiene un array con los identificadores de los sistemas cargados.
147 * @param DB $db Base de datos de la cual obtener los sistemas.
148 * @param string $where Clausula WHERE para filtrar resultados.
154 function getSistemasArray($db, $where = '') // ~X2C
158 $conf = parse_ini_file(AI_SISTEMA_CONFFILE, true);
165 $query .= "WHERE $where";
167 return $db->getCol($query);
171 // +X2C Operation 531
173 * @param DB $db Base de datos de donde obtener los sistemas.
174 * @param string $where Clausula WHERE para filtrar la bsqueda.
180 function getSistemas($db, $where = '') // ~X2C
184 $conf = parse_ini_file(AI_SISTEMA_CONFFILE, true);
186 $id_field = $conf['id'];
187 $tabla = $conf['base'].'.'.$conf['tabla'];
188 // FIXME - ver como manejar JOINs - Ver de hacer el JOIN tambien en cargar.
190 SELECT AI.*, SA.nombre_sistema as nombre, SA.desc_sistema as descripcion
191 FROM $tabla as AI, samurai.sistema as SA
192 WHERE SA.id_sistema = AI.sistema and SA.estado = 1";
194 $query .= " WHERE $where";
196 $query .= ' ORDER BY nombre ASC';
197 $result = $db->query($query);
198 if (DB::isError($result)) {
202 $sistema = new AI_Sistema;
203 $err = $sistema->cargar($result);
204 while (!PEAR::isError($err)) {
205 $sistemas[] = $sistema->__clone();
206 $err = $sistema->cargar($result);
208 // Si no hay mas resultados (terminó bien) devuelve el array de
210 if (AI_Error::isError($err)
211 and $err->getCode() == AI_ERROR_NO_RESULTADOS) {
214 // Si no, se devuelve el error.
219 } // -X2C Class :AI_Sistema