]> git.llucax.com Git - mecon/ai.git/blob - lib/AI/Servicio.php
- Se usa el nuevo método de ArbolDB para indicar qué elemento se está editando.
[mecon/ai.git] / lib / AI / Servicio.php
1 <?php
2 // vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
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 // +X2C includes
31 require_once 'AI/DBTreeObject.php';
32 // ~X2C
33
34 require_once 'AI/Error.php';
35
36 /**
37  * Archivo de configuración.
38  */
39 define('AI_SERVICIO_CONFFILE', dirname(__FILE__).'/Servicio.ini');
40
41 // +X2C Class 413 :AI_Servicio
42 /**
43  * Servicio.
44  *
45  * @package AI
46  * @access public
47  */
48 class AI_Servicio extends AI_DBTreeObject {
49     /**
50      * ID del servicio.
51      *
52      * @var    int $servicio
53      * @access public
54      */
55     var $servicio = 0;
56
57     /**
58      * @var    int $servicio_padre
59      * @access public
60      */
61     var $servicio_padre = 0;
62
63     /**
64      * Nombre del servicio.
65      *
66      * @var    string $nombre
67      * @access public
68      */
69     var $nombre = '';
70
71     /**
72      * Descripcin del servicio.
73      *
74      * @var    string $descripcion
75      * @access public
76      */
77     var $descripcion = '';
78
79     /**
80      * ?ono del servicio.
81      *
82      * @var    string $icono
83      * @access public
84      */
85     var $icono = '';
86
87     /**
88      * Enlace a donde el este servicio.
89      *
90      * @var    string $link
91      * @access public
92      */
93     var $link = '';
94
95     /**
96      * Enlace a donde se encuentra la ayuda del servicio.
97      *
98      * @var    string $link_ayuda
99      * @access public
100      */
101     var $link_ayuda = '';
102
103     /**
104      * True si es necesario que el usuario se loguee para usar el servicio.
105      *
106      * @var    bool $necesita_logueo
107      * @access public
108      */
109     var $necesita_logueo = false;
110
111     /**
112      * Indica si esta habilitado.
113      *
114      * @var    bool $habilitado
115      * @access public
116      */
117     var $habilitado = true;
118
119     // ~X2C
120
121     // +X2C Operation 465
122     /**
123      * @param  int $servicio ID del servicio.
124      *
125      * @return void
126      * @access public
127      */
128     function AI_Servicio($servicio = 0) // ~X2C
129     {
130         parent::AI_DBTreeObject($servicio, AI_SERVICIO_CONFFILE);
131     }
132     // -X2C
133
134     // +X2C Operation 458
135     /**
136      * @param  DB $db DB donde guardar.
137      * @param  bool $nuevo Si es true, se fuerza a guardar el Servicio como nuevo.
138      *
139      * @return PEAR_Error
140      * @access public
141      */
142     function guardar($db, $nuevo = false) // ~X2C
143     {
144         $datos = array(
145             'servicio_padre'    => intval($this->servicio_padre),
146             'nombre'            => $this->nombre,
147             'descripcion'       => $this->descripcion,
148             'icono'             => $this->icono,
149             'link'              => $this->link,
150             'link_ayuda'        => $this->link_ayuda,
151             'necesita_logueo'   => $this->necesita_logueo ? 1 : 0,
152             'habilitado'        => $this->habilitado ? 1 : 0,
153         );
154         $err = parent::guardar($db, $datos, $nuevo);
155         if (PEAR::isError($err)) {
156             return $err;
157         }
158     }
159     // -X2C
160
161
162
163 } // -X2C Class :AI_Servicio
164
165 ?>