OnBeforeWebLogout
Last updated Apr 12th, 2019 | Page history | Improve this page | Report an issue
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn moreEvent: OnBeforeWebLogout¶
Fires right before a user logs out of a non-mgr context. The logout hasn't occured yet.
- Service: 3 - Web Access Events
- Group: None
Event Parameters¶
Name | Description |
---|---|
& user | A reference to the modUser object of the user. Passed by reference |
userid | The user ID of the user. (deprecated) |
username | The username of the user. (deprecated) |
& loginContext | The context key this logout is occurring in. Passed by reference |
& addContexts | Additional contexts in which the logout is also occuring in. Passed by reference |
Example¶
Такой плагин запишет в "Журнал ошибок" id вышедшего пользователя и откуда он вышел:
<?php
$eventName = $modx->event->name;
switch($eventName) {
case 'OnBeforeWebLogout':
$u = $user->get('id');
$modx->log(modX::LOG_LEVEL_ERROR, 'User with id '.$u.' logged out in context '.$loginContext.' and also in these'.print_r($addContexts));
break;
}
See Also¶
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn more