diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-05-15 17:45:22 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-05-15 17:45:22 +0200 |
commit | eb62a816fba72e54361a1407d962082443d4b041 (patch) | |
tree | ae2ebd0a03dbdb898b44c4606a3e189cf80430ca /program/lib/Roundcube/rcube_storage.php | |
parent | 072f1aa97b0452f48c46e6a28ed8394d709c2faa (diff) | |
parent | 482c45831440c4d72097aef682fff4b689607ae1 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'program/lib/Roundcube/rcube_storage.php')
-rw-r--r-- | program/lib/Roundcube/rcube_storage.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/program/lib/Roundcube/rcube_storage.php b/program/lib/Roundcube/rcube_storage.php index 69d6d2fae..c1293961c 100644 --- a/program/lib/Roundcube/rcube_storage.php +++ b/program/lib/Roundcube/rcube_storage.php @@ -152,6 +152,19 @@ abstract class rcube_storage /** + * Get connection/class option + * + * @param string $name Option name + * + * @param mixed Option value + */ + public function get_option($name) + { + return $this->options[$name]; + } + + + /** * Activate/deactivate debug mode. * * @param boolean $dbg True if conversation with the server should be logged |