*/
var $_db;
- // ~X2C
-
- // +X2C Operation 229
/**
- * Constructor. Si recibe un identificador como parametro, busca la informacion en la base.
+ * Gets Id.
*
- * @param Samurai_DB &$db Objeto conexion
- * @param int $id Identificador del perfil.
+ * @return int
+ * @access public
+ */
+ function getId()
+ {
+ return $this->_id;
+ }
+ /**
+ * Sets Id.
+ *
+ * @param int $id Id.
*
* @return void
* @access public
*/
- function Perfil(&$db, $id = null)// ~X2C
+ function setId($id)
{
- if (!is_null($id)) {
- //BUSCAR INFO EN LA DB,
- //SETEAR LAS VI
- }
- else {
- //INICIALIZO LA VI
- $this->_id = null;
- $this->_descripcion = null;
- $this->_tipo = null;
- }
+ $this->_id = $id;
}
- // -X2C
- // +X2C Operation 230
/**
- * Devuelve el identificador del perfil.
+ * Gets Descripcion.
*
- * @return int
+ * @return string
* @access public
*/
- function getId()// ~X2C
+ function getDescripcion()
{
- return $this->_id;
+ return $this->_descripcion;
}
- // -X2C
-
- // +X2C Operation 231
/**
- * Devuelve la descripcion del perfil.
+ * Sets Descripcion.
+ *
+ * @param string $descripcion Descripcion.
*
- * @return getDescPerfilstring
+ * @return void
* @access public
*/
- function getDescripcion()// ~X2C
+ function setDescripcion($descripcion)
{
- return $this->_descripcion;
+ $this->_descripcion = $descripcion;
}
- // -X2C
- // +X2C Operation 232
/**
- * Devuelve el tipo de perfil.
+ * Gets Tipo.
*
* @return string
* @access public
*/
- function getTipo()// ~X2C
+ function getTipo()
{
return $this->_tipo;
}
- // -X2C
-
- // +X2C Operation 233
/**
- * Setea la descripcion del perfil.
+ * Sets Tipo.
*
- * @param string $descripcion Descripcion del perfil.
+ * @param string $tipo Tipo.
*
* @return void
* @access public
*/
- function setDescripcion($descripcion = null)// ~X2C
+ function setTipo($tipo)
{
- $this->_descripcion = $descripcion;
+ $this->_tipo = $tipo;
}
- // -X2C
- // +X2C Operation 234
+ // ~X2C
+
+ // +X2C Operation 229
/**
- * Setea el tipo de perfil.
+ * Constructor. Si recibe un identificador como parametro, busca la informacion en la base.
*
- * @param string $tipo Tipo de perfil.
+ * @param Samurai_DB &$db Objeto conexion
+ * @param int $id Identificador del perfil.
*
* @return void
* @access public
*/
- function setTipo($tipo = null)// ~X2C
+ function Perfil(&$db, $id = null)// ~X2C
{
- $this->_tipo = $tipo;
+ if (!is_null($id)) {
+ //BUSCAR INFO EN LA DB,
+ //SETEAR LAS VI
+ }
+ else {
+ //INICIALIZO LA VI
+ $this->_id = null;
+ $this->_descripcion = null;
+ $this->_tipo = null;
+ }
}
// -X2C
+
+
+
+
+
} // -X2C Class :Perfil
?>
\ No newline at end of file