]> git.llucax.com Git - mecon/ai.git/blob - sistema/local_lib/Servicio.php
8df6c9e2875be2ccb77502ae9f3c459b95a1b40f
[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      * Nombre del servicio.
54      *
55      * @var    string $nombre
56      * @access public
57      */
58     var $nombre = '';
59
60     /**
61      * Descripcin del servicio.
62      *
63      * @var    string $descripcion
64      * @access public
65      */
66     var $descripcion = '';
67
68     /**
69      * ?ono del servicio.
70      *
71      * @var    HTML_Imagen $icono
72      * @access public
73      */
74     var $icono = null;
75
76     /**
77      * Enlace a donde el este servicio.
78      *
79      * @var    string $link
80      * @access public
81      */
82     var $link = '';
83
84     /**
85      * Enlace a donde se encuentra la ayuda del servicio.
86      *
87      * @var    string $linkAyuda
88      * @access public
89      */
90     var $linkAyuda = '';
91
92     /**
93      * True si es necesario que el usuario se loguee para usar el servicio.
94      *
95      * @var    bool $necesitaLogueo
96      * @access public
97      */
98     var $necesitaLogueo = false;
99
100     /**
101      * Indica si esta habilitado.
102      *
103      * @var    bool $habilitado
104      * @access public
105      */
106     var $habilitado = true;
107
108     // ~X2C
109
110
111     // +X2C Operation 456
112     /**
113      * @param  int $db DB de donde borrar.
114      *
115      * @return bool
116      * @access public
117      */
118     function borrar($db)// ~X2C
119     {
120         trigger_error('Not implemented!', E_USER_WARNING);
121     }
122     // -X2C
123
124     // +X2C Operation 457
125     /**
126      * @param  DB &$db Base de datos a utilizar.
127      *
128      * @return bool
129      * @access public
130      */
131     function cargar(&$db)// ~X2C
132     {
133         trigger_error('Not implemented!', E_USER_WARNING);
134     }
135     // -X2C
136
137     // +X2C Operation 458
138     /**
139      * @param  DB &$db DB donde guardar.
140      *
141      * @return bool
142      * @access public
143      */
144     function guardar(&$db)// ~X2C
145     {
146         trigger_error('Not implemented!', E_USER_WARNING);
147     }
148     // -X2C
149
150     // +X2C Operation 463
151     /**
152      * @param  DB &$db DB de donde cargar los hijos.
153      *
154      * @return bool
155      * @access public
156      */
157     function cargarHijos(&$db)// ~X2C
158     {
159         trigger_error('Not implemented!', E_USER_WARNING);
160     }
161     // -X2C
162
163 } // -X2C Class :Servicio
164 ?>