]> git.llucax.com Git - mecon/samurai.git/blob - sistema/local_lib/Perfil.php
34a37832cc83e3e87cf04eb2b7bf0eafa1421abc
[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      * @access private
43      */
44     var $_id;
45
46     /**
47      * Descripcion del perfil.
48      *
49      * @var    string $descripcion
50      * @access private
51      */
52     var $_descripcion;
53
54     /**
55      * Tipo de perfil. E = Externo. I = Interno. D = Dios.
56      *
57      * @var    string $tipo
58      * @access private
59      */
60     var $_tipo;
61
62     /**
63      * Objeto Samurai_DB
64      *
65      * @var    Samurai_DB $db
66      * @access private
67      */
68     var $_db;
69
70     /**
71      * Gets Id.
72      *
73      * @return int
74      * @access public
75      */
76     function getId()
77     {
78         return $this->_id;
79     }
80     /**
81      * Sets Id.
82      *
83      * @param  int $id Id.
84      *
85      * @return void
86      * @access public
87      */
88     function setId($id)
89     {
90         $this->_id = $id;
91     }
92
93     /**
94      * Gets Descripcion.
95      *
96      * @return string
97      * @access public
98      */
99     function getDescripcion()
100     {
101         return $this->_descripcion;
102     }
103     /**
104      * Sets Descripcion.
105      *
106      * @param  string $descripcion Descripcion.
107      *
108      * @return void
109      * @access public
110      */
111     function setDescripcion($descripcion)
112     {
113         $this->_descripcion = $descripcion;
114     }
115
116     /**
117      * Gets Tipo.
118      *
119      * @return string
120      * @access public
121      */
122     function getTipo()
123     {
124         return $this->_tipo;
125     }
126     /**
127      * Sets Tipo.
128      *
129      * @param  string $tipo Tipo.
130      *
131      * @return void
132      * @access public
133      */
134     function setTipo($tipo)
135     {
136         $this->_tipo = $tipo;
137     }
138
139     // ~X2C
140
141     // +X2C Operation 229
142     /**
143      * Constructor. Si recibe un identificador como parametro, busca la informacion en la base.
144      *
145      * @param  Samurai_DB &$db Objeto conexion
146      * @param  int $id Identificador del perfil.
147      *
148      * @return void
149      * @access public
150      */
151     function Perfil(&$db, $id = null)// ~X2C
152     {
153          if (!is_null($id)) {
154             //BUSCAR INFO EN LA DB,
155             //SETEAR LAS VI
156         }
157         else {
158             //INICIALIZO LA VI
159             $this->_id          = null;
160             $this->_descripcion = null; 
161             $this->_tipo        = null;
162         }
163     }
164     // -X2C
165
166
167
168
169
170
171 } // -X2C Class :Perfil
172
173 ?>