]> git.llucax.com Git - mecon/ai.git/blob - sistema/local_lib/Servicio.php
- Se termina de implementar GrupoSecciones (aparentemente).
[mecon/ai.git] / sistema / local_lib / Servicio.php
1 <?php
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.                                           |
8 // |                                                                    |
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.                             |
13 // |                                                                    |
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.                           |
18 // |                                                                    |
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 // +--------------------------------------------------------------------+
26 //
27 // $Id$
28 //
29
30
31
32
33 // +X2C Class 413 :Servicio
34 /**
35  * @access public
36  */
37 class Servicio {
38     /**
39      * ID del servicio.
40      *
41      * @var    int $servicio
42      * @access public
43      */
44     var $servicio = 0;
45
46     /**
47      * @var    int $padre
48      * @access public
49      */
50     var $padre = 0;
51
52     /**
53      * Servicios hijos.
54      *
55      * @var    array $hijos
56      * @access protected
57      */
58     var $_hijos = array();
59
60     /**
61      * Nombre del servicio.
62      *
63      * @var    string $nombre
64      * @access public
65      */
66     var $nombre = '';
67
68     /**
69      * Descripcin del servicio.
70      *
71      * @var    string $descripcion
72      * @access public
73      */
74     var $descripcion = '';
75
76     /**
77      * ?ono del servicio.
78      *
79      * @var    HTML_Imagen $icono
80      * @access public
81      */
82     var $icono = null;
83
84     /**
85      * Enlace a donde el este servicio.
86      *
87      * @var    string $link
88      * @access public
89      */
90     var $link = '';
91
92     /**
93      * Enlace a donde se encuentra la ayuda del servicio.
94      *
95      * @var    string $linkAyuda
96      * @access public
97      */
98     var $linkAyuda = '';
99
100     /**
101      * True si es necesario que el usuario se loguee para usar el servicio.
102      *
103      * @var    bool $necesitaLogueo
104      * @access public
105      */
106     var $necesitaLogueo = false;
107
108     /**
109      * Indica si esta habilitado.
110      *
111      * @var    bool $habilitado
112      * @access public
113      */
114     var $habilitado = true;
115
116     // ~X2C
117
118
119     // +X2C Operation 456
120     /**
121      * @param  DB $db DB de donde borrar.
122      *
123      * @return PEAR_Error
124      * @access public
125      */
126     function borrar($db)// ~X2C
127     {
128         trigger_error('Not implemented!', E_USER_WARNING);
129     }
130     // -X2C
131
132     // +X2C Operation 457
133     /**
134      * @param  mixed $db Base de datos o Resultado a utilizar.
135      *
136      * @return PEAR_Error
137      * @access public
138      */
139     function cargar($db)// ~X2C
140     {
141         trigger_error('Not implemented!', E_USER_WARNING);
142     }
143     // -X2C
144
145     // +X2C Operation 458
146     /**
147      * @param  DB $db DB donde guardar.
148      *
149      * @return PEAR_Error
150      * @access public
151      */
152     function guardar($db)// ~X2C
153     {
154         trigger_error('Not implemented!', E_USER_WARNING);
155     }
156     // -X2C
157
158     // +X2C Operation 463
159     /**
160      * @param  DB $db DB de donde cargar los hijos.
161      *
162      * @return PEAR_Error
163      * @access public
164      */
165     function cargarHijos($db)// ~X2C
166     {
167         trigger_error('Not implemented!', E_USER_WARNING);
168     }
169     // -X2C
170
171     // +X2C Operation 465
172     /**
173      * @param  int $servicio ID del servicio.
174      *
175      * @return void
176      * @access public
177      */
178     function Servicio($servicio = 0)// ~X2C
179     {
180         trigger_error('Not implemented!', E_USER_WARNING);
181     }
182     // -X2C
183
184     // +X2C Operation 501
185     /**
186      * @return Servicio
187      * @access public
188      */
189     function __clone()// ~X2C
190     {
191         trigger_error('Not implemented!', E_USER_WARNING);
192     }
193     // -X2C
194
195 } // -X2C Class :Servicio
196 ?>