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';
38 // +X2C Class 416 :AI_Sistema
45 class AI_Sistema extends AI_DBObject {
47 * ID del sistema (ID en SAMURAI).
48 FIXME - preguntar a gonzalo si le sirve.
56 * Nombre del sistema (slo de lectura, extra?o de SAMURAI).
57 FIXME - preguntar a gonzalo si le sirve.
65 * Descripcin del sistema (slo de lectura, extra?o de SAMURAI).
67 * @var string $descripcion
70 var $descripcion = '';
81 * Enlace a donde se encuentra el sistema.
89 * Enlace a la ayuda del sistema.
91 * @var string $link_ayuda
97 * Indica si esta habilitado.
99 * @var bool $habilitado
102 var $habilitado = true;
106 // +X2C Operation 466
108 * @param int $sistema ID del sistema.
113 function AI_Sistema($sistema = 0) // ~X2C
115 parent::AI_DBObject($sistema, dirname(__FILE__) . '/Sistema.ini');
119 // +X2C Operation 459
121 * @param DB $db DB donde guardar.
122 * @param bool $nuevo Si es true, se fuerza a guardar el servicio como nuevo.
127 function guardar($db, $nuevo = false) // ~X2C
130 'icono' => $this->icono,
131 'link' => $this->link,
132 'link_ayuda' => $this->link_ayuda,
133 'habilitado' => $this->habilitado ? 1 : 0,
135 $err = parent::guardar($db, $datos, $nuevo);
136 if (PEAR::isError($err)) {
142 } // -X2C Class :AI_Sistema