Lines Matching refs:handler
24 protected $handler; variable in dokuwiki\\Parsing\\Lexer\\Lexer
39 public function __construct($handler, $start = "accept", $case = false) argument
42 $this->handler = $handler;
118 * @param string $handler New target handler.
120 public function mapHandler($mode, $handler) argument
122 $this->mode_handlers[$mode] = $handler;
136 if (! isset($this->handler)) {
260 $handler = $this->modeStack->getCurrent();
261 if (isset($this->mode_handlers[$handler])) {
262 $handler = $this->mode_handlers[$handler];
267 if (str_starts_with($handler, 'plugin_')) {
268 [$handler, $plugin] = sexplode('_', $handler, 2, '');
269 return $this->handler->$handler($content, $is_match, $pos, $plugin);
272 return $this->handler->$handler($content, $is_match, $pos);