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