summaryrefslogtreecommitdiff
path: root/classes/pluginhost.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-12-06 13:20:18 +0300
committerAndrew Dolgov <[email protected]>2021-12-06 13:20:18 +0300
commit53061d150814cf5939d1d4dc165d8270ca764109 (patch)
tree5fd1b2c095dd54291d45cc9cb48037f021165c44 /classes/pluginhost.php
parent57b0413a3a8b8f73276382d51cf560c09ac6fbc6 (diff)
* add HOOK_POST_LOGOUT
* auth_remote: add config option AUTH_REMOTE_POST_LOGOUT_URL
Diffstat (limited to 'classes/pluginhost.php')
-rwxr-xr-xclasses/pluginhost.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/classes/pluginhost.php b/classes/pluginhost.php
index f89cc5c32..a3a389def 100755
--- a/classes/pluginhost.php
+++ b/classes/pluginhost.php
@@ -195,6 +195,9 @@ class PluginHost {
/** @see Plugin::hook_pre_subscribe() */
const HOOK_PRE_SUBSCRIBE = "hook_pre_subscribe";
+ /** @see Plugin::hook_post_logout() */
+ const HOOK_POST_LOGOUT = "hook_post_logout";
+
const KIND_ALL = 1;
const KIND_SYSTEM = 2;
const KIND_USER = 3;