From a00ad346cee2dbf9f2857d59b9261cc2f6be0091 Mon Sep 17 00:00:00 2001 From: alec Date: Mon, 25 Jul 2011 07:49:14 +0000 Subject: - Plugin API: Added 'config_get' hook git-svn-id: https://svn.roundcube.net/trunk@4962 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/include/rcube_config.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'roundcubemail/program/include/rcube_config.php') diff --git a/roundcubemail/program/include/rcube_config.php b/roundcubemail/program/include/rcube_config.php index 0e23b0396..9379e9e7b 100644 --- a/roundcubemail/program/include/rcube_config.php +++ b/roundcubemail/program/include/rcube_config.php @@ -150,7 +150,17 @@ class rcube_config */ public function get($name, $def = null) { - return isset($this->prop[$name]) ? $this->prop[$name] : $def; + $result = isset($this->prop[$name]) ? $this->prop[$name] : $def; + $rcmail = rcmail::get_instance(); + + if (is_object($rcmail->plugins)) { + $plugin = $rcmail->plugins->exec_hook('config_get', array( + 'name' => $name, 'default' => $def, 'result' => $result)); + + return $plugin['result']; + } + + return $result; } -- cgit v1.2.3