aboutsummaryrefslogtreecommitdiff
path: root/mod/beechat/disablechat.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/beechat/disablechat.php')
-rw-r--r--mod/beechat/disablechat.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/mod/beechat/disablechat.php b/mod/beechat/disablechat.php
new file mode 100644
index 000000000..490fb327b
--- /dev/null
+++ b/mod/beechat/disablechat.php
@@ -0,0 +1,8 @@
+<?php
+ require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
+ if (elgg_is_logged_in()) {
+ elgg_get_logged_in_user_entity()->chatenabled = false;
+ system_message(elgg_echo("beechat:disabled"));
+ }
+ forward($_SERVER['HTTP_REFERER']);
+?>