]> git.llucax.com Git - mecon/ai.git/blob - sistema/local_lib/Sistema.php
552d5f3a39169173c528b49532e568950f444655
[mecon/ai.git] / sistema / local_lib / Sistema.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 416 :Sistema
34 /**
35  * @access public
36  */
37 class Sistema {
38     /**
39      * ID del sistema (ID en SAMURAI).
40      *
41      * @var    int $sistema
42      * @access public
43      */
44     var $sistema = 0;
45
46     /**
47      * ?ono del sistema.
48      *
49      * @var    HTML_Imagen $icono
50      * @access public
51      */
52     var $icono = null;
53
54     /**
55      * Enlace a donde se encuentra el sistema.
56      *
57      * @var    string $link
58      * @access public
59      */
60     var $link = '';
61
62     /**
63      * Enlace a la ayuda del sistema.
64      *
65      * @var    string $linkAyuda
66      * @access public
67      */
68     var $linkAyuda = '';
69
70     /**
71      * Indica si esta habilitado.
72      *
73      * @var    bool $habilitado
74      * @access public
75      */
76     var $habilitado = true;
77
78     // ~X2C
79
80
81     // +X2C Operation 459
82     /**
83      * @param  DB &$db DB donde guardar.
84      *
85      * @return bool
86      * @access public
87      */
88     function guardar(&$db)// ~X2C
89     {
90         trigger_error('Not implemented!', E_USER_WARNING);
91     }
92     // -X2C
93
94     // +X2C Operation 460
95     /**
96      * @param  DB &$db Base de datos a utilizar.
97      *
98      * @return bool
99      * @access public
100      */
101     function cargar(&$db)// ~X2C
102     {
103         trigger_error('Not implemented!', E_USER_WARNING);
104     }
105     // -X2C
106
107     // +X2C Operation 461
108     /**
109      * @param  int $db DB de donde borrar.
110      *
111      * @return bool
112      * @access public
113      */
114     function borrar($db)// ~X2C
115     {
116         trigger_error('Not implemented!', E_USER_WARNING);
117     }
118     // -X2C
119
120 } // -X2C Class :Sistema
121 ?>