Lines Matching defs:handler
18 protected $handler;
32 * @param Doku_Handler $handler
34 public function __construct(Doku_Handler $handler)
36 $this->handler = $handler;
48 $this->lexer = new Lexer($this->handler, 'base', true);
115 if (!method_exists($this->handler, 'finalize')) {
116 /** @deprecated 2019-10 we have a legacy handler from a plugin, assume legacy _finalize exists */
120 get_class($this->handler) . '::_finalize()',
125 $this->handler->_finalize();
127 $this->handler->finalize();
129 return $this->handler->calls;