lithium\template\view\Renderer::handlers()
Gets or adds content handlers from/to this rendering context, depending on the value of
$handlers. For more on how to implement handlers and the various types, see
applyHandler().
Parameters
-
mixed
$handlersIf
$handlersis empty or no value is provided, the current list of handlers is returned. If$handlersis a string, the handler with the name matching the string will be returned, or null if one does not exist. If$handlersis an array, the handlers named in the array will be merged into the list of handlers in this rendering context, with the pre-existing handlers taking precedence over those newly added.
Returns
mixedReturns an array of handlers or a single handler reference, depending on the
value of $handlers.
Source
public function handlers($handlers = null) {
if (is_array($handlers)) {
return $this->_handlers += $handlers;
}
if (is_string($handlers)) {
return isset($this->_handlers[$handlers]) ? $this->_handlers[$handlers] : null;
}
return $this->_handlers;
}