From be17885789fdf35b40e040d80c50077652069dc1 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 26 Feb 2013 19:30:19 +0400 Subject: pluginhost: add get_debug()/set_debug() for plugins to detect if debugging is allowed --- classes/pluginhost.php | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'classes') diff --git a/classes/pluginhost.php b/classes/pluginhost.php index 1748a067d..592629881 100644 --- a/classes/pluginhost.php +++ b/classes/pluginhost.php @@ -7,6 +7,7 @@ class PluginHost { private $commands = array(); private $storage = array(); private $owner_uid; + private $debug; const HOOK_ARTICLE_BUTTON = 1; const HOOK_ARTICLE_FILTER = 2; @@ -290,5 +291,13 @@ class PluginHost { $_SESSION["plugin_storage"] = $this->storage; } } + + function set_debug($debug) { + $this->debug = $debug; + } + + function get_debug() { + return $this->debug; + } } ?> -- cgit v1.2.3-54-g00ecf