]> git.llucax.com Git - mecon/samurai.git/commitdiff
Acomode los autoexecute para que utilicen siempre la base samurai
authorMartín Marrese <marrese@gmail.com>
Fri, 26 Sep 2003 17:40:41 +0000 (17:40 +0000)
committerMartín Marrese <marrese@gmail.com>
Fri, 26 Sep 2003 17:40:41 +0000 (17:40 +0000)
lib/SAMURAI/Perfil.php
lib/SAMURAI/Permiso.php
lib/SAMURAI/Sistema.php
lib/SAMURAI/Usuario.php

index 6d5a9ce517a097756d9ca2ad936945d5e198d4f9..9a56e538c4fd8168fced19a14d75829734e14dae 100644 (file)
@@ -343,7 +343,7 @@ class SAMURAI_Perfil {
                         'desc_perfil' => $this->getDescripcion(),
                         'responsable' => $this->getResponsable(),
                     );
                         '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;
             }
             if (PEAR::isError($res)) {
                 return $res;
             }
@@ -354,7 +354,7 @@ class SAMURAI_Perfil {
                         'tipo_perfil' => $this->getTipo(),
                         'responsable' => $this->getResponsable(),
                     );
                         '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
 
     }
     // -X2C
 
@@ -422,7 +422,7 @@ class SAMURAI_Perfil {
                     'tipo_perfil' => $this->getTipo(),
                     'responsable' => $this->getResponsable(),
         );
                     '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)) {         
                 DB_AUTOQUERY_UPDATE, 'id_perfil ='.$this->getId().' AND
                 id_sistema='.$this->_idSistema);
         if (PEAR::isError($res)) {         
@@ -607,7 +607,7 @@ class SAMURAI_Perfil {
 
         //GRABO EN PERM_PERFIL_SIST
         $datos = array ('id_permiso', 'id_perfil', 'id_sistema', 'observaciones', 'responsable');
 
         //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());
         foreach ($this->getPermisos() as $permiso) {
             list($id, $obs) = split ('##',$permiso);
             $datos = array ($id, $this->getId(), $this->_idSistema, $obs, $this->getResponsable());
@@ -671,4 +671,4 @@ class SAMURAI_Perfil {
 
 } // -X2C Class :SAMURAI_Perfil
 
 
 } // -X2C Class :SAMURAI_Perfil
 
-?>
\ No newline at end of file
+?>
index ba385a038557f8bf53a0787825d71a2c158c9551..beba603809fbf5e86d0a0655d5f4d09d568b66ab 100644 (file)
@@ -232,7 +232,7 @@ class SAMURAI_Permiso {
                     'desc_permiso' => $this->getDescripcion(),
                     'responsable'  => $this->getResponsable(),
                 );
                     'desc_permiso' => $this->getDescripcion(),
                     'responsable'  => $this->getResponsable(),
                 );
-        return $this->_db->autoExecute('permiso', $datos, DB_AUTOQUERY_INSERT);
+        return $this->_db->autoExecute('samurai.permiso', $datos, DB_AUTOQUERY_INSERT);
     }
     // -X2C
 
     }
     // -X2C
 
@@ -283,7 +283,7 @@ class SAMURAI_Permiso {
                     'desc_permiso' => $this->getDescripcion(),
                     'responsable'  => $this->getResponsable(),
                 );
                     'desc_permiso' => $this->getDescripcion(),
                     'responsable'  => $this->getResponsable(),
                 );
-        return $this->_db->autoExecute('permiso', $datos, DB_AUTOQUERY_UPDATE, 'id_permiso ='.$this->getId());
+        return $this->_db->autoExecute('samurai.permiso', $datos, DB_AUTOQUERY_UPDATE, 'id_permiso ='.$this->getId());
     }
     // -X2C
 
     }
     // -X2C
 
@@ -391,4 +391,4 @@ class SAMURAI_Permiso {
 
 } // -X2C Class :SAMURAI_Permiso
 
 
 } // -X2C Class :SAMURAI_Permiso
 
-?>
\ No newline at end of file
+?>
index 14f3d7bb093db5c8c27fdc6f177669b0530fe854..1b0b90a17e1bc48dfb9839f92d22f9c44a7a3666 100644 (file)
@@ -603,7 +603,7 @@ class SAMURAI_Sistema {
                     'responsable'           => $this->getResponsable(),
                     'estado'                => 1
                 );                
                     'responsable'           => $this->getResponsable(),
                     'estado'                => 1
                 );                
-        $res = $this->_db->autoExecute('sistema', $datos, DB_AUTOQUERY_INSERT);
+        $res = $this->_db->autoExecute('samurai.sistema', $datos, DB_AUTOQUERY_INSERT);
         
         if (PEAR::isError($res)) {
             return $res;
         
         if (PEAR::isError($res)) {
             return $res;
@@ -632,7 +632,7 @@ class SAMURAI_Sistema {
         $datos = array( 'responsable' => $responsable,
                         'estado'      => 0
                 );                
         $datos = array( 'responsable' => $responsable,
                         'estado'      => 0
                 );                
-        $res = $this->_db->autoExecute('sistema', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$idSistema);
+        $res = $this->_db->autoExecute('samurai.sistema', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$idSistema);
         if (PEAR::isError($res)) {
             return $res;
         }
         if (PEAR::isError($res)) {
             return $res;
         }
@@ -668,7 +668,7 @@ class SAMURAI_Sistema {
                     'contacto'              => $this->getContacto(),
                     'responsable'           => $this->getResponsable(),
                 );                
                     'contacto'              => $this->getContacto(),
                     'responsable'           => $this->getResponsable(),
                 );                
-        $res = $this->_db->autoExecute('sistema', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$idSistema);
+        $res = $this->_db->autoExecute('samurai.sistema', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$idSistema);
         if (PEAR::isError($res)) {
             return $res;
         }
         if (PEAR::isError($res)) {
             return $res;
         }
@@ -698,7 +698,7 @@ class SAMURAI_Sistema {
     function _grabarPermisosDb($idSistema) // ~X2C
     {
         $datos = array ('id_permiso','id_sistema','responsable');
     function _grabarPermisosDb($idSistema) // ~X2C
     {
         $datos = array ('id_permiso','id_sistema','responsable');
-        $re = $this->_db->autoPrepare('perm_sist', $datos, DB_AUTOQUERY_INSERT);
+        $re = $this->_db->autoPrepare('samurai.perm_sist', $datos, DB_AUTOQUERY_INSERT);
         if (isset($this->_permisos)) {
             foreach ($this->_permisos as $permiso) {
                 $datos = array ($permiso, $idSistema, $this->getResponsable());
         if (isset($this->_permisos)) {
             foreach ($this->_permisos as $permiso) {
                 $datos = array ($permiso, $idSistema, $this->getResponsable());
@@ -766,7 +766,7 @@ class SAMURAI_Sistema {
                         'observaciones' => $observacion,
                         'responsable'   => $this->getResponsable(),
                     );                
                         'observaciones' => $observacion,
                         'responsable'   => $this->getResponsable(),
                     );                
-            $res = $this->_db->autoExecute('perm_sist', $datos, DB_AUTOQUERY_INSERT);
+            $res = $this->_db->autoExecute('samurai.perm_sist', $datos, DB_AUTOQUERY_INSERT);
             //Recargo los datos del sistema
             $this->_obtenerDatosDb();
             return null;
             //Recargo los datos del sistema
             $this->_obtenerDatosDb();
             return null;
@@ -882,7 +882,7 @@ class SAMURAI_Sistema {
                         'observaciones' => $observacion,
                         'responsable'   => $this->getResponsable(),
                     );                
                         'observaciones' => $observacion,
                         'responsable'   => $this->getResponsable(),
                     );                
-            $this->_db->autoExecute('perm_sist', 
+            $this->_db->autoExecute('samurai.perm_sist', 
                                     $datos, 
                                     DB_AUTOQUERY_UPDATE, 
                                     'id_sistema = '.$this->getId().' AND id_permiso = '.$idPermiso.' AND observaciones =\''.$obs_ant.'\'');
                                     $datos, 
                                     DB_AUTOQUERY_UPDATE, 
                                     'id_sistema = '.$this->getId().' AND id_permiso = '.$idPermiso.' AND observaciones =\''.$obs_ant.'\'');
@@ -993,4 +993,4 @@ class SAMURAI_Sistema {
 
 } // -X2C Class :SAMURAI_Sistema
 
 
 } // -X2C Class :SAMURAI_Sistema
 
-?>
\ No newline at end of file
+?>
index a4e12f2956c957e0b983b59d4f02c2163618cdee..d629eeab0006c5cc5f0943ca522d73385eafd98a 100644 (file)
@@ -347,7 +347,7 @@ class SAMURAI_Usuario {
     function _grabarDb() // ~X2C
     {   
         $datos = array ('login', 'id_perfil', 'id_sistema', 'responsable');
     function _grabarDb() // ~X2C
     {   
         $datos = array ('login', 'id_perfil', 'id_sistema', 'responsable');
-        $re = $this->_db->autoPrepare('perfil_sist_usuario', $datos, DB_AUTOQUERY_INSERT);
+        $re = $this->_db->autoPrepare('samurai.perfil_sist_usuario', $datos, DB_AUTOQUERY_INSERT);
         foreach ($this->getPerfiles() as $perfil) {
             $datos = array ($this->getLogin(),
                             $perfil,
         foreach ($this->getPerfiles() as $perfil) {
             $datos = array ($this->getLogin(),
                             $perfil,
@@ -487,4 +487,4 @@ class SAMURAI_Usuario {
     // -X2C
 
 } // -X2C Class :SAMURAI_Usuario
     // -X2C
 
 } // -X2C Class :SAMURAI_Usuario
-?>
\ No newline at end of file
+?>