mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-27 17:59:22 +02:00

* Fix alert class name * feature: csrf protection * Cosmetics * Fix token generate * Admin Panel: changelogs csrf protection * news/id route * Refactor admin newses + add csrf * Use admin.links instead * Admin panel: Pages csrf * Menus: better csrf + add success message on reset colors * Plugins csrf * Move definitions * add info function, same as note($message) * Update mailer.php * Fix new page/news links * clear_cache & maintenance csrf * Formatting * Fix news type * Fix changelog link * Add new changelog link * More info to confirm dialog * This is always true
33 lines
657 B
PHP
33 lines
657 B
PHP
<?php
|
|
/**
|
|
* Logout from account
|
|
*
|
|
* @package MyAAC
|
|
* @author Slawkens <slawkens@gmail.com>
|
|
* @copyright 2019 MyAAC
|
|
* @link https://my-aac.org
|
|
*/
|
|
|
|
use MyAAC\CsrfToken;
|
|
|
|
defined('MYAAC') or die('Direct access not allowed!');
|
|
|
|
if(isset($account_logged) && $account_logged->isLoaded()) {
|
|
if($hooks->trigger(HOOK_LOGOUT, ['account_id' => $account_logged->getId()])) {
|
|
unsetSession('account');
|
|
unsetSession('password');
|
|
unsetSession('remember_me');
|
|
|
|
CsrfToken::generate();
|
|
|
|
$logged = false;
|
|
unset($account_logged);
|
|
|
|
if(isset($_REQUEST['redirect']))
|
|
{
|
|
header('Location: ' . urldecode($_REQUEST['redirect']));
|
|
exit;
|
|
}
|
|
}
|
|
}
|