CodeExplorer getHandlerClasses example
public function getHandlerClasses() { return $this->handlers;
} /**
* {@inheritdoc}
*/
public function getHandlerClass($handler_type,
$nested = FALSE
) { if ($this->
hasHandlerClass($handler_type,
$nested)) { $handlers =
$this->
getHandlerClasses();
return $nested ?
$handlers[$handler_type][$nested] :
$handlers[$handler_type];
} return NULL;
} /**
* {@inheritdoc}
*/
public function setHandlerClass($handler_type,
$value) { $this->handlers
[$handler_type] =
$value;
return $this;
}