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
38 * ID del sistema (ID en SAMURAI).
48 * @var HTML_Imagen $icono
54 * Enlace a donde se encuentra el sistema.
62 * Enlace a la ayuda del sistema.
64 * @var string $linkAyuda
70 * Indica si esta habilitado.
72 * @var bool $habilitado
75 var $habilitado = true;
81 * @param int $sistema ID del sistema.
86 function Sistema($sistema = 0) // ~X2C
88 $this->sistema = $sistema;
94 * @param mixed $db Base de datos o Resultado a utilizar.
99 function cargar($db) // ~X2C
101 $sistema = intval($this->sistema);
102 if (is_a($db, 'db_result')) {
104 // Si no es un resultado, hago el query.
106 $result = $db->query(
109 WHERE sistema = $sistema"
111 if (DB::isError($result)) {
116 $row = $result->fetchRow(DB_FETCHMODE_ASSOC);
118 return new AIError(AIERROR_NO_RESULTADOS,
119 "No hay más resultados en la DB [sistema=$sistema]");
121 // Asigno valores al objeto.
123 $this->sistema = $sistema;
124 $this->icono = $icono; # FIXME - new HTML_Icono (o no?)
126 $this->linkAyuda = $link_ayuda;
127 $this->habilitado = $habilitado;
132 // +X2C Operation 459
134 * @param DB $db DB donde guardar.
139 function guardar($db) // ~X2C
141 $sistema = intval($this->sistema);
144 'icono' => $this->icono,
145 'link' => $this->link,
146 'link_ayuda' => $this->linkAyuda,
147 'habilitado' => $this->habilitado ? 1 : 0,
150 $accion = DB_AUTOQUERY_UPDATE;
151 $where = "sistema = $sistema";
153 $accion = DB_AUTOQUERY_INSERT;
154 $sistema = $db->nextId('sistema');
155 if (DB::isError($sistema)) {
158 // Asigno el nuevo id de sistema.
159 $this->sistema = $sistema;
160 $datos['sistema'] = $sistema;
162 $res = $db->autoExecute('sistema', $datos, $accion, $where);
163 if (DB::isError($res)) {
170 // +X2C Operation 461
172 * @param DB $db DB de donde borrar.
177 function borrar($db) // ~X2C
179 $sistema = intval($this->sistema);
182 "DELETE FROM sistema WHERE sistema = $sistema");
183 if (DB::isError($res)) {
188 return PEAR::raiseError("No hay un sistema válido para borrar");
192 // +X2C Operation 502
197 function __clone() // ~X2C
203 } // -X2C Class :Sistema