Exemplo n.º 1
0
 public function logoutAction()
 {
     $model = new UserTableModel();
     $model->logout();
     header('Location: ' . '/');
     exit;
 }
Exemplo n.º 2
0
 public function logoutAction()
 {
     $fc = FrontController::getInstance();
     $model = new UserTableModel();
     $model->logout();
     header('Location: /admin/login');
     exit;
 }