Archived
1
0
Fork 0
This repository has been archived on 2023-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
ts3web/src/Control/Actions/AuthLogoutAction.php

19 lines
561 B
PHP
Raw Normal View History

2018-04-03 11:56:20 +00:00
<?php
use Slim\Http\Request;
use Slim\Http\Response;
final class AuthLogoutAction extends AbstractAction
{
public function __invoke(Request $request, Response $response, $args)
{
$this->flash->addMessage('success', $this->translator->trans('logout.flash.success'));
$this->ts->login($this->auth->getIdentity()['user'], $this->auth->getIdentity()['password']);
$this->ts->getInstance()->logout();
$this->auth->logout();
2018-04-05 10:30:06 +00:00
$this->session->clear();
2018-04-03 11:56:20 +00:00
return $response->withRedirect('/login');
}
}