Home
last modified time | relevance | path

Searched refs:handler (Results 76 – 100 of 1340) sorted by relevance

12345678910>>...54

/plugin/authgooglesheets/vendor/google/auth/src/Middleware/
H A DProxyAuthTokenMiddleware.php91 * @param callable $handler
94 public function __invoke(callable $handler) argument
96 return function (RequestInterface $request, array $options) use ($handler) {
99 return $handler($request, $options);
111 return $handler($request, $options);
H A DScopedAccessTokenMiddleware.php112 * @param callable $handler
115 public function __invoke(callable $handler) argument
117 return function (RequestInterface $request, array $options) use ($handler) {
120 return $handler($request, $options);
125 return $handler($request, $options);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DWhatFailureGroupHandler.php34 foreach ($this->handlers as $handler) {
36 $handler->handle($record);
59 foreach ($this->handlers as $handler) {
61 $handler->handleBatch($records);
H A DFallbackGroupHandler.php36 foreach ($this->handlers as $handler) {
38 $handler->handle($record);
62 foreach ($this->handlers as $handler) {
64 $handler->handleBatch($records);
/plugin/combo/action/
H A Dimgmove.php134 * The handlers is the name of the component (ie refers to the {@link syntax_plugin_combo_media} handler)
148 * @param helper_plugin_move_handler $handler
150 public function move_combo_img($match, $state, $pos, $plugin, helper_plugin_move_handler $handler) argument
158 $handler->media($match, $state, $pos);
168 * @param helper_plugin_move_handler $handler
171 public function move_combo_frontmatter_img($match, $state, $pos, $plugin, helper_plugin_move_handler $handler) argument
219 $this->moveImage($imageId, $handler);
248 $this->moveImage($imageId, $handler);
273 * because the handler does not give it unfortunately
282 * @param helper_plugin_move_handler $handler
285 moveImage(& $relativeOrAbsoluteWikiId, helper_plugin_move_handler $handler) global() argument
[all...]
H A Dinstructionspostprocessing.php69 * @var Doku_Handler $handler
71 $handler = $event->data;
95 * {@link pageinfo()} in common may starts before the {@link action_plugin_combo_docustom handler } is called
129 $callStack = CallStack::createFromHandler($handler);
132 $handler->calls = Outline::createFromCallStack($callStack, null, true)
141 $callStack = CallStack::createFromHandler($handler);
148 $handler->calls = $outline->toHtmlSectionOutlineCalls();
151 * $handler->calls = $outline->toDokuWikiTemplateInstructionCalls();
/plugin/linkpagechild/
H A Dsyntax.php58 * @param Doku_Handler $handler The handler
62 public function handle($match, $state, $pos, Doku_Handler $handler) argument
71 $handler->internallink($rewritten, $state, $pos);
74 $handler->media($rewritten, $state, $pos);
/plugin/bbcode/
H A Dlink.php26 function handle($match, $state, $pos, Doku_Handler $handler) { argument
40 $handler->_addCall('externallink',array($url,$title),$pos);
44 $handler->_addCall('locallink',array(substr($url,1),$title),$pos);
48 $handler->_addCall('internallink',array($url,$title),$pos);
/plugin/refnotes/
H A Dbibtex.php30 $this->handler = new refnotes_bibtex_handler();
31 $this->lexer = new refnotes_bibtex_lexer($this->handler, 'base', true);
71 $this->handler->reset();
74 return $this->handler->finalize();
117 $handler = isset($this->mode_handlers[$mode]) ? $this->mode_handlers[$mode] : $mode;
119 return $this->handler->$handler($text, $state, $pos);
127 protected $handler; variable in refnotes_bibtex_mode
137 $this->handler = '';
170 if ($this->handler !
[all...]
/plugin/definitionlist/
H A Dsyntax.php83 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
87 … $this->_writeCall('dl',DOKU_LEXER_ENTER,$pos,$match,$handler); // open a new DL
88 … $this->_writeCall('dt',DOKU_LEXER_ENTER,$pos,$match,$handler); // always start with a DT
96 …$this->_writeCall($oldtag,DOKU_LEXER_EXIT,$pos,$match,$handler); // close the current definition …
97 … $this->_writeCall($newtag,DOKU_LEXER_ENTER,$pos,$match,$handler); // ...and open the new dl item
103 $this->_writeCall($tag,DOKU_LEXER_EXIT,$pos,$match,$handler);
107 $this->_writeCall('dl',DOKU_LEXER_EXIT,$pos,$match,$handler);
111 …$handler->base($match, $state, $pos); // cdata --- use base() as _writeCall() is prefixed for p…
126 protected function _writeCall($tag, $state, $pos, $match, &$handler) { argument
127 $handler->addPluginCall('definitionlist', array($tag, $state, ''), $state, $pos, $match);
/plugin/combo/ComboStrap/
H A DIconTag.php19 public static function handleSpecial(TagAttributes $tagAttributes, Doku_Handler $handler): array argument
22 $callStack = CallStack::createFromHandler($handler);
114 public static function handleEnter(TagAttributes $tagAttributes, Doku_Handler $handler): array argument
116 return self::handleSpecial($tagAttributes, $handler);
119 public static function handleExit(Doku_Handler $handler): array argument
121 $callStack = CallStack::createFromHandler($handler);
H A DParser.php13 * @return Doku_Handler - the handler
30 $handler = new Doku_Handler();
31 $parser = new \dokuwiki\Parsing\Parser($handler);
38 return $handler;
H A DCallStack.php57 private $handler; variable in ComboStrap\\CallStack
83 * the {@link Doku_Handler::$calls call stack of the handler}
93 public function __construct(&$handler) argument
95 $this->handler = $handler;
110 if (!method_exists($handler, 'getCallWriter')) {
111 $class = get_class($handler);
112 LogUtility::msg("$headErrorMessage. The handler ($class) provided cannot manipulate the callstack (ie the function getCallWriter does not exist).", LogUtility::LVL_MSG_ERROR);
115 $callWriter = $handler->getCallWriter();
148 * Check the calls property of the handler
268 createFromHandler(& $handler) global() argument
[all...]
/plugin/combo/ComboStrap/Tag/
H A DMermaidTag.php124 public static function handleExit($handler){ argument
126 $callStack = CallStack::createFromHandler($handler);
138 * @param $handler
141 public static function handle($state, $match, &$handler): array argument
154 return PluginUtility::handleAndReturnUnmatchedData("", $match, $handler);
158 self::handleExit($handler);
/plugin/slider/
H A Dsyntax.php63 * @param Doku_Handler $handler The handler
66 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
82 $lastcall = array_pop($handler->calls);
105 $handler->_addCall('cdata', array($match), $pos);
115 $handler->_addCall('header',array($title,$level,$pos), $pos);
118 … $handler->addPluginCall('wrap_closesection', array(), DOKU_LEXER_SPECIAL, $pos, '');
/plugin/farm/
H A Dadmin.php44 var $handler = null; variable in admin_plugin_farm
328 $this->handler = & new $class($this);
329 if($this->handler) $this->handler->process();
363 …if(!$this->handler) $this->error('system_errors', array('code' => 'system_nohandler_failure', 'dat…
364 if($this->handler) if(method_exists($this->handler, 'htmlheader')) $this->handler->htmlheader();
367 if($this->handler) $this->handler->html();
/plugin/ckgdoku/
H A Dscript.js79 if ( handler.comment )
80 handler.comment( html.substring( 4, index ) );
112 if ( handler.chars )
113 handler.chars( text );
121 if ( handler.chars )
122 handler.chars( text );
154 if ( handler.start ) {
170 if ( handler.start )
171 handler.start( tagName, attrs, unary );
189 if ( handler.end )
[all …]
/plugin/imagemapping/
H A Dsyntax.php56 function handle($match, $state, $pos, Doku_Handler $handler)
88 $ReWriter = new ImageMapHandler($mapname, $handler->getCallWriter());
89 $handler->setCallWriter($ReWriter);
93 $ReWriter = $handler->getCallWriter();
95 $handler->setCallWriter($ReWriter->getCallWriter());
38 handle($match, $state, $pos, Doku_Handler $handler) global() argument
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
H A DHandlerRegistryInterface.php14 public function registerSubscribingHandler(SubscribingHandlerInterface $handler): void; argument
20 * @param object|callable $handler function(visitor, mixed $data, array $type): mixed
22 … public function registerHandler(int $direction, string $typeName, string $format, $handler): void; argument
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DArrayCollectionHandlerTest.php23 $handler = new ArrayCollectionHandler();
33 $handler->serializeCollection($visitor, $collection, $type, $context);
41 $handler = new ArrayCollectionHandler(false);
58 $handler->serializeCollection($visitor, $collection, $type, $context);
/plugin/ckgedit/
H A Dscript.js103 if ( handler.comment )
104 handler.comment( html.substring( 4, index ) );
136 if ( handler.chars )
137 handler.chars( text );
145 if ( handler.chars )
146 handler.chars( text );
178 if ( handler.start ) {
194 if ( handler.start )
195 handler.start( tagName, attrs, unary );
213 if ( handler.end )
[all …]
/plugin/markdowku/
H A Dautolinks.php24 function handle($match, $state, $pos, Doku_Handler $handler) { argument
27 $handler->_addCall('emaillink', array($match, NULL), $pos);
30 $handler->_addCall('externallink', array($match, NULL), $pos);
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php39 // Add handler options from the request's configuration options
60 * @param callable $handler Handler that was used.
69 callable $handler, argument
91 ? self::createErrorResponse($handler, $request, $response)
96 callable $handler, argument
113 return self::retryFailedRewind($handler, $request, $response);
524 callable $handler, argument
534 return self::createErrorResponse($handler, $request, $response);
541 return self::createErrorResponse($handler, $request, $response);
553 return self::createErrorResponse($handler,
[all...]
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/
H A Ddhtmlxgantt_tooltip.js349 var handler = function (event) { function
381 handler: handler property in TooltipManager.attach._listeners
482 var handler = handlers[i];
483 …if (handler.element === el && handler.event === event && handler.callback === callback && handler.…
493 var handler = staticArray[i];
494 eventScope.detach(handler.element, handler.event, handler.callback, handler.capture);
495 eventScope.detach(handler.element, handler.event, handler.callback, undefined);
496 eventScope.detach(handler.element, handler.event, handler.callback, false);
497 eventScope.detach(handler.element, handler.event, handler.callback, true);
1162 el.attachEvent("on"+event, handler);
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.state.class.php76 foreach ($handlers as $property => $handler) {
77 $handler->inherit($this->_state[1], $this->_state[0]);
89 foreach ($handlers as $property => $handler) {
90 $handler->inherit_text($state, $new_state);
103 $handler =& CSS::get_handler($code);
107 $value =& $handler->get($this->_state[$i]);

12345678910>>...54