mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 13:35:56 +00:00
pluginhost: add get_debug()/set_debug() for plugins to detect if debugging is allowed
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user