]> git.llucax.com Git - mecon/samurai.git/blob - sistema/local_lib/Perfil.php
c4a723d7e940dc43de6397d1d4aa6c967357957e
[mecon/samurai.git] / sistema / local_lib / Perfil.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4                                                        |
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group                                |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license,      |
9 // | that is bundled with this package in the file LICENSE, and is        |
10 // | available at through the world-wide-web at                           |
11 // | http://www.php.net/license/2_02.txt.                                 |
12 // | If you did not receive a copy of the PHP license and are unable to   |
13 // | obtain it through the world-wide-web, please send a note to          |
14 // | license@php.net so we can mail you a copy immediately.               |
15 // +----------------------------------------------------------------------+
16 // | Created: Tue May 27 11:20:04 2003
17 // | Author:  Martin Marrese - Myrna Degano <mmarre@mecon.gov.ar - mdegan@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // $Author$
22 // $URL$
23 // $Date$
24 // $Rev$
25 //
26
27 #require_once 'PEAR.php';
28
29
30
31 // +X2C Class 208 :Perfil
32 /**
33  * Clase para el manejo de los perfies.
34  *
35  * @access public
36  */
37 class Perfil {
38     /**
39      * Identificador del perfil.
40      *
41      * @var    int $id
42      *
43      * @access private
44      */
45     var $_id;
46
47     /**
48      * Descripcion del perfil.
49      *
50      * @var    string $descripcion
51      *
52      * @access private
53      */
54     var $_descripcion;
55
56     /**
57      * Tipo de perfil. E = Externo. I = Interno. D = Dios.
58      *
59      * @var    string $tipo
60      *
61      * @access private
62      */
63     var $_tipo;
64
65     /**
66      * Objeto Samurai_DB
67      *
68      * @var    Samurai_DB $db
69      *
70      * @access private
71      */
72     var $_db;
73
74     // ~X2C
75
76     // +X2C Operation 229
77     /**
78      * Constructor. Si recibe un identificador como parametro, busca la informacion en la base.
79      *
80      * @param  Samurai_DB &$db Objeto conexion
81      * @param  int $id Identificador del perfil.
82      *
83      * @return void
84      *
85      * @access public
86      */
87     function Perfil(&$db, $id = null) // ~X2C
88     {
89          if (!is_null($id)) {
90             //BUSCAR INFO EN LA DB,
91             //SETEAR LAS VI
92         }
93         else {
94             //INICIALIZO LA VI
95             $this->_id          = null;
96             $this->_descripcion = null; 
97             $this->_tipo        = null;
98         }
99     }
100     // -X2C
101
102     // +X2C Operation 230
103     /**
104      * Devuelve el identificador del perfil.
105      *
106      * @return int
107      *
108      * @access public
109      */
110     function getId() // ~X2C
111     {
112         return $this->_id;
113     }
114     // -X2C
115
116     // +X2C Operation 231
117     /**
118      * Devuelve la descripcion del perfil.
119      *
120      * @return getDescPerfilstring
121      *
122      * @access public
123      */
124     function getDescripcion() // ~X2C
125     {
126         return $this->_descripcion;
127     }
128     // -X2C
129
130     // +X2C Operation 232
131     /**
132      * Devuelve el tipo de perfil.
133      *
134      * @return string
135      *
136      * @access public
137      */
138     function getTipo() // ~X2C
139     {
140         return $this->_tipo;
141     }
142     // -X2C
143
144     // +X2C Operation 233
145     /**
146      * Setea la descripcion del perfil.
147      *
148      * @param  string $descripcion Descripcion del perfil.
149      *
150      * @return void
151      *
152      * @access public
153      */
154     function setDescripcion($descripcion = null) // ~X2C
155     {
156         $this->_descripcion = $descripcion;
157     }
158     // -X2C
159
160     // +X2C Operation 234
161     /**
162      * Setea el tipo de perfil.
163      *
164      * @param  string $tipo Tipo de perfil.
165      *
166      * @return void
167      *
168      * @access public
169      */
170     function setTipo($tipo = null) // ~X2C
171     {
172         $this->_tipo = $tipo;
173     }
174     // -X2C
175
176 } // -X2C Class :Perfil
177
178 ?>