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 // +--------------------------------------------------------------------+
30 require_once 'AIError.php';
32 // +X2C Class 416 :Sistema
40 * ID del sistema (ID en SAMURAI).
50 * @var HTML_Imagen $icono
56 * Enlace a donde se encuentra el sistema.
64 * Enlace a la ayuda del sistema.
66 * @var string $link_ayuda
72 * Indica si esta habilitado.
74 * @var bool $habilitado
77 var $habilitado = true;
83 * @param int $sistema ID del sistema.
88 function Sistema($sistema = 0) // ~X2C
90 $this->sistema = $sistema;
96 * @param mixed $db Base de datos o Resultado a utilizar.
101 function cargar($db) // ~X2C
103 $sistema = intval($this->sistema);
104 if (is_a($db, 'db_result')) {
106 // Si no es un resultado, hago el query.
108 $result = $db->query(
111 WHERE sistema = $sistema"
113 if (DB::isError($result)) {
118 $row = $result->fetchRow(DB_FETCHMODE_ASSOC);
120 return new AIError(AIERROR_NO_RESULTADOS,
121 "No hay más resultados en la DB [sistema=$sistema]");
123 // Asigno valores al objeto.
125 $this->sistema = $sistema;
126 $this->icono = $icono; # FIXME - new HTML_Icono (o no?)
128 $this->link_ayuda = $link_ayuda;
129 $this->habilitado = $habilitado;
134 // +X2C Operation 459
136 * @param DB $db DB donde guardar.
141 function guardar($db) // ~X2C
143 $sistema = intval($this->sistema);
146 'icono' => $this->icono,
147 'link' => $this->link,
148 'link_ayuda' => $this->link_ayuda,
149 'habilitado' => $this->habilitado ? 1 : 0,
152 $accion = DB_AUTOQUERY_UPDATE;
153 $where = "sistema = $sistema";
155 $accion = DB_AUTOQUERY_INSERT;
156 $sistema = $db->nextId('sistema');
157 if (DB::isError($sistema)) {
160 // Asigno el nuevo id de sistema.
161 $this->sistema = $sistema;
162 $datos['sistema'] = $sistema;
164 $res = $db->autoExecute('sistema', $datos, $accion, $where);
165 if (DB::isError($res)) {
172 // +X2C Operation 461
174 * @param DB $db DB de donde borrar.
179 function borrar($db) // ~X2C
181 $sistema = intval($this->sistema);
184 "DELETE FROM sistema WHERE sistema = $sistema");
185 if (DB::isError($res)) {
190 return PEAR::raiseError("No hay un sistema válido para borrar");
194 // +X2C Operation 502
199 function __clone() // ~X2C
205 } // -X2C Class :Sistema