'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;
}
'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
'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)) {
//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());
} // -X2C Class :SAMURAI_Perfil
-?>
\ No newline at end of file
+?>
'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
'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 Class :SAMURAI_Permiso
-?>
\ No newline at end of file
+?>
'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;
$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;
}
'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;
}
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());
'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;
'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.'\'');
} // -X2C Class :SAMURAI_Sistema
-?>
\ No newline at end of file
+?>
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,
// -X2C
} // -X2C Class :SAMURAI_Usuario
-?>
\ No newline at end of file
+?>