var $_id;
var $_nombre;
var $_apellido;
+ var $_pass;
var $_email;
function Usuario($id)
{
$this->_id = $id;
$d = file_users_get($id);
+ $this->_pass = $d[1];
$this->_email = $d[2];
if ($this->esAsesor()) $d = file_ase_get($id);
else $d = file_int_get($id);
return $this->_id;
}
+ function getPassword()
+ {
+ return $this->_pass;
+ }
+
function getNombre()
{
return $this->_nombre;
/// Verifica que sea la password correcta.
function check_password($user, $pass)
{
- if (Usuario::validar($user, $pass)) return true;
+ if ($user->getPassword() == $pass) return true;
error('Contraseña incorrecta!');
return false;
}