Home
last modified time | relevance | path

Searched refs:handler (Results 1 – 12 of 12) sorted by relevance

/dokuwiki/inc/Parsing/
H A DParser.php18 protected $handler; variable in dokuwiki\\Parsing\\Parser
32 * @param Doku_Handler $handler
34 public function __construct(Doku_Handler $handler) argument
36 $this->handler = $handler;
48 $this->lexer = new Lexer($this->handler, 'base', true);
115 if (!method_exists($this->handler, 'finalize')) {
120 get_class($this->handler) . '::_finalize()',
125 $this->handler->_finalize();
127 $this->handler->finalize();
129 return $this->handler->calls;
/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php24 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];
[all …]
/dokuwiki/_test/tests/inc/parser/
H A Dlexer.test.php160 $handler = $this->createMock('TestParser');
161 $handler->expects($this->never())->method('accept');
162 $lexer = new Lexer($handler);
166 $handler = $this->createMock('TestParser');
167 $handler->expects($this->never())->method('accept');
168 $lexer = new Lexer($handler);
185 $handler = $this->createMock('TestParser');
186 $handler
192 $lexer = new Lexer($handler);
211 $handler = $this->createPartialMock('TestParser', ['accept']);
[all …]
/dokuwiki/inc/Extension/
H A DSyntaxPlugin.php75 * @param Doku_Handler $handler The Doku_Handler object
78 abstract public function handle($match, $state, $pos, Doku_Handler $handler); argument
/dokuwiki/lib/plugins/info/
H A Dsyntax.php53 * @param Doku_Handler $handler The Doku_Handler object
56 public function handle($match, $state, $pos, Doku_Handler $handler) argument
303 foreach ($sequence as $handler) {
306 $renderer->cdata(get_class($handler[0]) . '::' . $handler[1] . '()');
/dokuwiki/vendor/simplepie/simplepie/src/
H A DEnclosure.php123 public $handler; variable in SimplePie\\Enclosure
262 $this->handler = $this->get_handler(); // Needs to load last
877 $handler = $this->get_handler();
986 if ($handler === 'flash') {
996 elseif ($handler === 'fmedia' || ($handler === 'mp3' && $mediaplayer !== '')) {
1007 elseif ($handler === 'quicktime' || ($handler === 'mp3' && $mediaplayer === '')) {
1021 elseif ($handler === 'wmedia') {
/dokuwiki/inc/parser/
H A Dhandler.php50 * @param string $handler handler method name (see mode handlers below)
54 public function addCall($handler, $args, $pos) argument
56 $call = [$handler, $args, $pos];
104 public function _addCall($handler, $args, $pos) argument
107 $this->addCall($handler, $args, $pos);
/dokuwiki/lib/scripts/
H A Dfileuploaderextended.js13 var handler = new qq[handlerClass]({
34 return handler;
H A Dfileuploader.js325 var handler = new qq[handlerClass]({
343 return handler;
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md78 By default, the CLI class registers an exception handler and will print the exception's message to …
/dokuwiki/_test/core/
H A DphpQuery-onefile.php873 foreach($handlers as $handler) {
875 $event->data = $handler['data']
876 ? $handler['data']
879 $return = phpQuery::callbackRun($handler['callback'], $params);
939 foreach($eventNode->eventHandlers[$type] as $k => $handler)
940 if ($handler['callback'] == $callback)
/dokuwiki/lib/scripts/jquery/
H A Djquery.min.js2handler:function(e){var t,n=_.get(this,r);if(1&e.isTrigger&&this[r]){if(n)(ce.event.special[r]||{}… method