]> git.llucax.com Git - mecon/samurai.git/blobdiff - lib/SAMURAI/Perfil.php
Modificacion para utilizar la nueva funcionalidad de MECON_HTML_TablaDB::addRowsIcon
[mecon/samurai.git] / lib / SAMURAI / Perfil.php
index 9d32a5c1caf9bd40621c0989a65609327fa19075..3a58940fa2584adeff4b4ee8343f0a1a0b96f696 100644 (file)
@@ -29,6 +29,7 @@
 // +X2C Class 208 :SAMURAI_Perfil
 /**
  * Clase para el manejo de los perfies.
+@see \ref page_samurai_html_perfil
  *
  * @access public
  */
@@ -50,16 +51,6 @@ class SAMURAI_Perfil {
     var $_descripcion;
 
     /**
-     * Tipo de perfil. E = Externo. I = Interno. D = Dios.
-     *
-     * @var    string $tipo
-     * @access protected
-     */
-    var $_tipo;
-
-    /**
-     * Objeto Samurai_DB
-     *
      * @var    SAMURAI_DB $db
      * @access protected
      */
@@ -135,29 +126,6 @@ class SAMURAI_Perfil {
         $this->_descripcion = $descripcion;
     }
 
-    /**
-     * Gets Tipo.
-     *
-     * @return string
-     * @access public
-     */
-    function getTipo()
-    {
-        return $this->_tipo;
-    }
-    /**
-     * Sets Tipo.
-     *
-     * @param  string $tipo Tipo.
-     *
-     * @return void
-     * @access public
-     */
-    function setTipo($tipo)
-    {
-        $this->_tipo = $tipo;
-    }
-
     /**
      * Gets Responsable.
      *
@@ -229,7 +197,6 @@ class SAMURAI_Perfil {
             //INICIALIZO LA VI
             $this->_id          = null;
             $this->_descripcion = null; 
-            $this->_tipo        = null;
             $this->_permisos    = null;
         }
     }
@@ -263,13 +230,6 @@ class SAMURAI_Perfil {
                 $this->setResponsable();
             }
         }
-        //OBTENGO EL TIPO DE PERFIL
-        $tmp = $sql['verificar_asociacion'];
-        $dbh = $this->_db->prepare($tmp);
-        $tmp = array ($this->getId(), $this->_idSistema);
-        $res = $this->_db->execute($dbh,$tmp);        
-        $re = $res->fetchrow(DB_FETCHMODE_ASSOC);
-        $this->setTipo($re['tipo_perfil']);
 
         //OBTENGO LOS PERMISOS QUE TIENE ASIGNADO EL PERFIL DESDE PERM_PERFIL_SIST
         $tmp = $sql['obtener_permisos'];
@@ -342,7 +302,7 @@ class SAMURAI_Perfil {
                         'desc_perfil' => $this->getDescripcion(),
                         'responsable' => $this->getResponsable(),
                     );
-            $res = $this->_db->autoExecute('perfil', $datos, DB_AUTOQUERY_INSERT);
+            $res = $this->_db->autoExecute('samurai.perfil', $datos, DB_AUTOQUERY_INSERT);
             if (PEAR::isError($res)) {
                 return $res;
             }
@@ -350,10 +310,9 @@ class SAMURAI_Perfil {
         //GRABO EN PERFIL_SIST
         $datos = array ('id_perfil'   => $this->getId(),
                         'id_sistema'  => $this->_idSistema,
-                        'tipo_perfil' => $this->getTipo(),
                         'responsable' => $this->getResponsable(),
                     );
-        $res = $this->_db->autoExecute('perfil_sist', $datos, DB_AUTOQUERY_INSERT);
+        $res = $this->_db->autoExecute('samurai.perfil_sist', $datos, DB_AUTOQUERY_INSERT);
     }
     // -X2C
 
@@ -418,10 +377,9 @@ class SAMURAI_Perfil {
     {
         //Modifico la tabla perfil_sist
         $datos = array (
-                    'tipo_perfil' => $this->getTipo(),
                     'responsable' => $this->getResponsable(),
         );
-        $res = $this->_db->autoExecute('perfil_sist', $datos,
+        $res = $this->_db->autoExecute('samurai.perfil_sist', $datos,
                 DB_AUTOQUERY_UPDATE, 'id_perfil ='.$this->getId().' AND
                 id_sistema='.$this->_idSistema);
         if (PEAR::isError($res)) {         
@@ -606,7 +564,7 @@ class SAMURAI_Perfil {
 
         //GRABO EN PERM_PERFIL_SIST
         $datos = array ('id_permiso', 'id_perfil', 'id_sistema', 'observaciones', 'responsable');
-        $re = $this->_db->autoPrepare('perm_perfil_sist', $datos, DB_AUTOQUERY_INSERT);
+        $re = $this->_db->autoPrepare('samurai.perm_perfil_sist', $datos, DB_AUTOQUERY_INSERT);
         foreach ($this->getPermisos() as $permiso) {
             list($id, $obs) = split ('##',$permiso);
             $datos = array ($id, $this->getId(), $this->_idSistema, $obs, $this->getResponsable());
@@ -670,4 +628,4 @@ class SAMURAI_Perfil {
 
 } // -X2C Class :SAMURAI_Perfil
 
-?>
+?>
\ No newline at end of file