accessor for Widget's HTMLOutputter

This commit is contained in:
Evan Prodromou 2012-03-07 16:06:33 -06:00
parent 376a19f3c1
commit 6e01db2c92
1 changed files with 13 additions and 0 deletions

View File

@ -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.
*