]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/local_lib/Perfil.php
Teminados los abms de Sistemas y Permisos con los errores ubicados segun corresponden.
[mecon/samurai.git] / sistema / local_lib / Perfil.php
index c4a723d7e940dc43de6397d1d4aa6c967357957e..34a37832cc83e3e87cf04eb2b7bf0eafa1421abc 100644 (file)
@@ -39,7 +39,6 @@ class Perfil {
      * Identificador del perfil.
      *
      * @var    int $id
-     *
      * @access private
      */
     var $_id;
@@ -48,7 +47,6 @@ class Perfil {
      * Descripcion del perfil.
      *
      * @var    string $descripcion
-     *
      * @access private
      */
     var $_descripcion;
@@ -57,7 +55,6 @@ class Perfil {
      * Tipo de perfil. E = Externo. I = Interno. D = Dios.
      *
      * @var    string $tipo
-     *
      * @access private
      */
     var $_tipo;
@@ -66,113 +63,111 @@ class Perfil {
      * Objeto Samurai_DB
      *
      * @var    Samurai_DB $db
-     *
      * @access private
      */
     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.
      *
-     * @return void
+     * @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.
-     *
-     * @return int
+     * Gets Descripcion.
      *
+     * @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.
      *
-     * @return getDescPerfilstring
+     * @param  string $descripcion Descripcion.
      *
+     * @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