// $Rev$
//
-/** \page page_
-
-\section PRUEBA PRUEBA
-hola esto es una prueba
-
- */
-
-
require_once 'PEAR.php';
require_once 'Perfil.php';
require_once 'MECON/Usuario.php';
// +X2C Class 207 :SAMURAI_Usuario
/**
* Clase para el manejo de los usuarios.
+@see \ref page_samurai_html_usuario
*
* @access public
*/
var $_perfiles;
/**
+ * Identificador del sistema en el cual se esta trabajando.
+ *
* @var int $idSistema
* @access protected
*/
{
$this->_db = $db;
$this->setLogin($login);
+ $this->_idSistema = $idSistema;
if (!is_null($login)) {
$tmp =& new MECON_Usuario(null, $login);
$this->setNrodoc($tmp->getDni());
$this->setNombre($tmp->getNombre());
- $this->_idSistema = $idSistema;
$this->_obtenerDatosDb();
}
}
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