A1_Core::check_password PHP Метод

check_password() публичный Метод

if ( $a1->check_password($user, $this->request->post('password'))) { delete account or some other special action }
public check_password ( $user, $password ) : boolean
Результат boolean Success
    public function check_password($user, $password)
    {
        return $user->loaded() and $this->check($password, $user->{$this->_config['columns']['password']});
    }