From 5a978736ac88f789161f7891ed917178b837db78 Mon Sep 17 00:00:00 2001 From: thomasb Date: Fri, 13 Apr 2012 15:56:28 +0000 Subject: allow read-only access to rcube_output::$env git-svn-id: https://svn.roundcube.net/trunk@6082 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/include/rcube_output.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'roundcubemail/program') diff --git a/roundcubemail/program/include/rcube_output.php b/roundcubemail/program/include/rcube_output.php index 575f1062d..a83ed1f37 100644 --- a/roundcubemail/program/include/rcube_output.php +++ b/roundcubemail/program/include/rcube_output.php @@ -53,6 +53,18 @@ abstract class rcube_output } + /** + * Magic getter + */ + public function __get($var) + { + // allow read-only access to $env + if ($var == 'env') + return $this->env; + + return null; + } + /** * Setter for page title * -- cgit v1.2.3