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';
35 // TODO - preguntar a gmeray si le sirve, yo no lo uso...
36 require_once 'SAMURAI/Sistema.php';
39 * Archivo de configuración.
41 define('AI_SISTEMA_CONFFILE', dirname(__FILE__).'/Sistema.ini');
43 // +X2C Class 416 :AI_Sistema
50 class AI_Sistema extends AI_DBObject {
52 * ID del sistema (ID en SAMURAI).
53 FIXME - preguntar a gonzalo si le sirve.
61 * Nombre del sistema (slo de lectura, extra?o de SAMURAI).
62 FIXME - preguntar a gonzalo si le sirve.
70 * Descripcin del sistema (slo de lectura, extra?o de SAMURAI).
72 * @var string $descripcion
75 var $descripcion = '';
86 * Enlace a donde se encuentra el sistema.
94 * Enlace a la ayuda del sistema.
96 * @var string $link_ayuda
102 * Indica si esta habilitado.
104 * @var bool $habilitado
107 var $habilitado = true;
111 // +X2C Operation 466
113 * @param int $sistema ID del sistema.
118 function AI_Sistema($sistema = 0) // ~X2C
120 parent::AI_DBObject($sistema, AI_SISTEMA_CONFFILE);
124 // +X2C Operation 459
126 * @param DB $db DB donde guardar.
127 * @param bool $nuevo Si es true, se fuerza a guardar el servicio como nuevo.
132 function guardar($db, $nuevo = false) // ~X2C
135 'icono' => $this->icono,
136 'link' => $this->link,
137 'link_ayuda' => $this->link_ayuda,
138 'habilitado' => $this->habilitado ? 1 : 0,
140 $err = parent::guardar($db, $datos, $nuevo);
141 if (PEAR::isError($err)) {
147 // +X2C Operation 528
149 * Obtiene un array con los identificadores de los sistemas cargados.
151 * @param DB $db Base de datos de la cual obtener los sistemas.
152 * @param string $where Clausula WHERE para filtrar resultados.
158 function getSistemasArray($db, $where = '') // ~X2C
162 $conf = parse_ini_file(AI_SISTEMA_CONFFILE, true);
169 $query .= "WHERE $where";
171 return $db->getCol($query);
175 } // -X2C Class :AI_Sistema