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 // +--------------------------------------------------------------------+
33 // +X2C Class 413 :Servicio
58 var $_hijos = array();
61 * Nombre del servicio.
69 * Descripcin del servicio.
71 * @var string $descripcion
74 var $descripcion = '';
79 * @var HTML_Imagen $icono
85 * Enlace a donde el este servicio.
93 * Enlace a donde se encuentra la ayuda del servicio.
95 * @var string $linkAyuda
101 * True si es necesario que el usuario se loguee para usar el servicio.
103 * @var bool $necesitaLogueo
106 var $necesitaLogueo = false;
109 * Indica si esta habilitado.
111 * @var bool $habilitado
114 var $habilitado = true;
119 // +X2C Operation 456
121 * @param int $db DB de donde borrar.
126 function borrar($db)// ~X2C
128 trigger_error('Not implemented!', E_USER_WARNING);
132 // +X2C Operation 457
134 * @param mixed &$db Base de datos o Resultado a utilizar.
139 function cargar(&$db)// ~X2C
141 trigger_error('Not implemented!', E_USER_WARNING);
145 // +X2C Operation 458
147 * @param DB &$db DB donde guardar.
152 function guardar(&$db)// ~X2C
154 trigger_error('Not implemented!', E_USER_WARNING);
158 // +X2C Operation 463
160 * @param DB &$db DB de donde cargar los hijos.
165 function cargarHijos(&$db)// ~X2C
167 trigger_error('Not implemented!', E_USER_WARNING);
171 // +X2C Operation 465
173 * @param int $servicio ID del servicio.
178 function Servicio($servicio = 0)// ~X2C
180 trigger_error('Not implemented!', E_USER_WARNING);
184 } // -X2C Class :Servicio