Habari\User::forget PHP Метод

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

Delete the user id from the session
public forget ( boolean $redirect = true )
$redirect boolean Redirect the user to base_url after destroying session?
    public function forget($redirect = true)
    {
        // if the user is not actually logged in, just return so we don't throw any errors later
        if ($this->loggedin != true) {
            return;
        }
        // is this user acting as another user?
        if (isset($_SESSION['sudo'])) {
            // if so, remove the sudo token, but don't log out
            // the user
            unset($_SESSION['sudo']);
            if ($redirect) {
                Utils::redirect(Site::get_url('admin'));
            } else {
                // we want to return, not continue processing, or we'd log out the user too
                return;
            }
        }
        ACL::clear_caches();
        Plugins::act('user_forget', $this);
        Session::clear_userid($_SESSION['user_id']);
        // then destroy the entire session
        Session::destroy();
        if ($redirect) {
            Utils::redirect(Site::get_url('site'));
        }
    }