diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-03-27 16:32:51 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-03-27 16:51:15 +0100 |
commit | e1d9b4824c1e5750dfbf51dc1c8b2d54cf0895c3 (patch) | |
tree | 3af80355478352bebb4e5eec70082e912252d9c1 /program/include | |
parent | d05808a1f93a7e273bb7b676a2f578cabcdef2fa (diff) |
Whitelist configuration options (user preferences) that can be changed using save-pref command
Conflicts:
program/lib/Roundcube/rcube_plugin.php
program/lib/Roundcube/rcube_plugin_api.php
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcube_plugin.php | 8 | ||||
-rw-r--r-- | program/include/rcube_plugin_api.php | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/program/include/rcube_plugin.php b/program/include/rcube_plugin.php index e7115cbec..de0aabbe3 100644 --- a/program/include/rcube_plugin.php +++ b/program/include/rcube_plugin.php @@ -61,6 +61,14 @@ abstract class rcube_plugin */ public $noframe = false; + /** + * A list of config option names that can be modified + * by the user via user interface (with save-pref command) + * + * @var array + */ + public $allowed_prefs; + protected $home; protected $urlbase; private $mytask; diff --git a/program/include/rcube_plugin_api.php b/program/include/rcube_plugin_api.php index be12f11b5..61bab3ce9 100644 --- a/program/include/rcube_plugin_api.php +++ b/program/include/rcube_plugin_api.php @@ -35,6 +35,7 @@ class rcube_plugin_api public $url = 'plugins/'; public $output; public $config; + public $allowed_prefs = array(); public $handlers = array(); private $plugins = array(); @@ -188,6 +189,9 @@ class rcube_plugin_api $plugin->init(); $this->plugins[$plugin_name] = $plugin; } + if (!empty($plugin->allowed_prefs)) { + $this->allowed_prefs = array_merge($this->allowed_prefs, $plugin->allowed_prefs); + } return true; } } |