]> git.llucax.com Git - mecon/samurai.git/blob - src/www/include/lib/samurai/Permiso.php
(no commit message)
[mecon/samurai.git] / src / www / include / lib / samurai / Permiso.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 210 :Permiso
32 /**
33  * Clase para el manejo de los Permisos.
34  *
35  * @access public
36  */
37 class Permiso {
38     /**
39      * Identificador del permiso.
40      *
41      * @var    int $id
42      *
43      * @access private
44      */
45     var $_id;
46
47     /**
48      * Descripcion del permiso.
49      *
50      * @var    string $descripcion
51      *
52      * @access private
53      */
54     var $_descripcion;
55
56     /**
57      * Objeto Samurai_DB
58      *
59      * @var    Samurai_DB $db
60      *
61      * @access private
62      */
63     var $_db;
64
65     // ~X2C
66
67     // +X2C Operation 259
68     /**
69      * Constructor. Si recibe como parametro el identificador del permiso, busca la informacion en la DB. No hay metodo que setee el id puesto que es un valor autoincrementable en la DB.
70      *
71      * @param  int $id Identificador del sistema.
72      * @param  Samurai_DB &$db Objeto conexion
73      *
74      * @return void
75      *
76      * @access public
77      */
78     function Permiso($id = null, &$db) // ~X2C
79     {
80          if (!is_null($id)) {
81             //BUSCAR INFO EN LA DB,
82             //SETEAR LAS VI
83         }
84         else {
85             //INICIALIZO LA VI
86             $this->_id          = null;
87             $this->_descripcion = null; 
88         }
89     }
90     // -X2C
91
92     // +X2C Operation 260
93     /**
94      * Devuelve el identificador del permiso.
95      *
96      * @return int
97      *
98      * @access public
99      */
100     function getId() // ~X2C
101     {
102         return $this->_id;
103     }
104     // -X2C
105
106     // +X2C Operation 261
107     /**
108      * Devuelve la descripcion del permiso.
109      *
110      * @return string
111      *
112      * @access public
113      */
114     function getDescripcion() // ~X2C
115     {
116         return $this->_descripcion;
117     }
118     // -X2C
119
120     // +X2C Operation 262
121     /**
122      * Setea la descripcion del permiso.
123      *
124      * @param  string $descripcion Descripcion del permiso.
125      *
126      * @return void
127      *
128      * @access public
129      */
130     function setDescripcion($descripcion = null) // ~X2C
131     {
132         $this->_descripcion = $descripcion;
133     }
134     // -X2C
135
136 } // -X2C Class :Permiso
137
138 ?>