From 6e01db2c92cea0bf1fa1520c5a5e1d94cb4b42ce Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 7 Mar 2012 16:06:33 -0600 Subject: [PATCH] accessor for Widget's HTMLOutputter --- lib/widget.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lib/widget.php b/lib/widget.php index f9b7152559..d068dea0f0 100644 --- a/lib/widget.php +++ b/lib/widget.php @@ -80,6 +80,19 @@ class Widget { } + /** + * Get HTMLOutputter + * + * Return the HTMLOutputter for the widget. + * + * @return HTMLOutputter the output helper + */ + + function getOut() + { + return $this->out; + } + /** * Delegate output methods to the outputter attribute. *