The OnAfterUserLogout event fires after the user authorization completes.
Parameters
Parameter
Description
arParams
Array of parameters:
ID - user ID;
SUCCESS - operation result. If true, the authorization completed successfully. If false, an error occurred or the authorization has been canceled from the OnBeforeUserLogout handler.
<?
// file /bitrix/modules/my_module_id/include.php
class MyClass
{
// create the OnAfterUserLogout handler
function OnAfterUserLogoutHandler($arParams)
{
// perform actions related to authorization
...
}
}
?>