LoginController::logout PHP Method

logout() public method

The logout action Perform logout, redirect user to main-page
public logout ( )
    public function logout()
    {
        LoginModel::logout();
        Redirect::home();
        exit;
    }

Usage Example

Exemplo n.º 1
0
 function perform()
 {
     $login = new LoginController();
     $login->logout();
     header('Location: index.php');
     exit;
 }
All Usage Examples Of LoginController::logout