Home
last modified time | relevance | path

Searched refs:handler (Results 51 – 75 of 1340) sorted by relevance

12345678910>>...54

/plugin/todo/syntax/
H A Dtodo.php96 * @param $handler Doku_Handler Reference to the Doku_Handler object. argument
103 public function handle($match, $state, $pos, Doku_Handler $handler) {
109 $handler->todoargs = $this->parseTodoArgs($tododata[1]);
111 if(!isset($handler->todo_index) || !is_numeric($handler->todo_index)) {
112 $handler->todo_index = 0;
114 $handler->todo_user = '';
115 $handler->checked = '';
116 $handler->todotitle = '';
130 $handler
[all...]
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DDateHandlerTest.php18 private $handler; variable in JMS\\Serializer\\Tests\\Handler\\DateHandlerTest
26 $this->handler = new DateHandler();
54 $this->handler->serializeDateTime($visitor, $datetime, $type, $context);
64 $this->handler->deserializeDateTimeFromJson($visitor, '2017-06-18', $type)
84 $this->handler->deserializeDateTimeFromJson($visitor, '2017-06-18', $type)
91 $this->handler->deserializeDateTimeFromJson($visitor, '2017-06-18', $type)
106 $actualDateTime = $this->handler->deserializeDateTimeFromJson($visitor, $timestamp, $type);
125 …$actualDateTime = $this->handler->deserializeDateTimeImmutableFromJson($visitor, $timestamp, $type…
/plugin/farm/
H A Danimal.class.php591 if($handler) $handler->errors[] = array('code' => 'animal_new_eventhandlercancel_failure');
598 if($handler) $handler->errors[] = array('code' => 'animal_new_farmfull_failure');
605 if($handler) $handler->errors[] = array('code' => 'animal_new_farmtoobig_failure');
615 if($handler) $handler->errors[] = array('code' => 'animal_new_badname_failure');
640 if($handler) $handler->errors[] = array('code' => 'animal_new_templatecopy_failure');
648 if($handler) $handler->errors[] = array('code' => 'animal_new_metacreate_failure');
653 if($handler) $handler->errors[] = array('code' => 'animal_new_createdespite_failure');
659 if($handler) $handler->errors[] = array('code' => 'animal_new_setconfig_failure');
663 if($handler) $handler->errors[] = array('code' => 'animal_new_saveconfig_failure');
676 if($handler) $handler->errors[] = array('code' => 'animal_new_savevirtualhost_failure');
[all …]
/plugin/combo/ComboStrap/
H A DXmlTagProcessing.php130 * @param Doku_Handler $handler
134 public static function handleStatic(string $match, int $state, int $pos, Doku_Handler $handler, DokuWiki_Syntax_Plugin $plugin): array argument
143 return self::handleStaticEnter($match, $pos, $handler, $plugin);
147 $data = PluginUtility::handleAndReturnUnmatchedData(null, $match, $handler);
152 $callStack = CallStack::createFromHandler($handler);
162 return self::handleStaticExit($match, $pos, $handler, $plugin);
274 public static function handleStaticEnter(string $match, int $pos, Doku_Handler $handler, DokuWiki_Syntax_Plugin $plugin): array argument
435 $returnedArray = BlockquoteTag::handleEnter($handler);
441 $returnedArray = ButtonTag::handleEnter($tagAttributes, $handler);
444 $returnedArray = CardTag::handleEnter($tagAttributes, $handler);
557 handleStaticExit(string $match, int $pos, Doku_Handler $handler, DokuWiki_Syntax_Plugin $plugin) global() argument
701 handleStaticEmptyTag(string $match, int $state, int $pos, Doku_Handler $handler, DokuWiki_Syntax_Plugin $plugin) global() argument
[all...]
/plugin/variants/
H A Dvariants.php77 * @param Doku_Handler $handler The handler object
80 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
85 … $CallWriter = new syntax_plugin_variants_callwriter($handler->CallWriter, $condition, $pos);
86 $handler->CallWriter =& $CallWriter;
91 $handler->CallWriter->startElse();
96 $handler->_addCall('cdata', array($match), $pos);
100 $handler->CallWriter->process();
101 $ReWriter = & $handler->CallWriter;
102 $handler->CallWriter = & $ReWriter->CallWriter;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A Dfunctions.php105 $handler = null;
107 $handler = Proxy::wrapSync(new CurlMultiHandler(), new CurlHandler());
109 $handler = new CurlHandler();
111 $handler = new CurlMultiHandler();
115 $handler = $handler
116 ? Proxy::wrapStreaming($handler, new StreamHandler())
118 } elseif (!$handler) {
123 return $handler;
/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/
H A DPromise.php152 foreach ($handlers as $handler) {
153 self::callHandler($id, $value, $handler);
163 foreach ($handlers as $handler) {
164 self::callHandler(1, $value, $handler);
168 foreach ($handlers as $handler) {
169 self::callHandler(2, $reason, $handler);
183 private static function callHandler($index, $value, array $handler) argument
186 $promise = $handler[0];
195 if (isset($handler[$index])) {
202 $f = $handler[$index];
[all …]
/plugin/do/syntax/
H A Ddo.php67 public function handle($match, $state, $pos, Doku_Handler $handler) argument
96 $ReWriter = new Nest($handler->getCallWriter(), 'plugin_do_do');
97 $handler->setCallWriter($ReWriter);
98 $handler->addPluginCall('do_do', $data, $state, $pos, $match);
102 $handler->addCall('cdata', array($match), $pos);
110 array_slice($handler->getCallWriter()->calls, 1),
119 $handler->getCallWriter()->calls[0][1][1]['task'] += $data['task'];
122 $handler->addPluginCall('do_do', $data, $state, $pos, $match);
123 $handler->getCallWriter()->process();
124 $ReWriter = $handler->getCallWriter();
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/
H A DLogger.php187 array_unshift($this->handlers, $handler);
216 foreach (array_reverse($handlers) as $handler) {
217 $this->pushHandler($handler);
296 foreach ($this->handlers as $handler) {
328 if (true === $handler->handle($record)) {
353 foreach ($this->handlers as $handler) {
354 $handler->close();
370 foreach ($this->handlers as $handler) {
372 $handler->reset();
456 foreach ($this->handlers as $handler) {
[all …]
/plugin/authgooglesheets/vendor/google/auth/src/Middleware/
H A DSimpleMiddleware.php73 * @param callable $handler
76 public function __invoke(callable $handler) argument
78 return function (RequestInterface $request, array $options) use ($handler) {
81 return $handler($request, $options);
89 return $handler($request, $options);
H A DAuthTokenMiddleware.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);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnectionFactory.php49 private $handler; variable in Elasticsearch\\Connections\\ConnectionFactory
51 public function __construct(callable $handler, array $connectionParams, SerializerInterface $serializer, LoggerInterface $logger, LoggerInterface $tracer) argument
53 $this->handler = $handler;
63 $this->handler,
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhttp-handler.asciidoc1 [[http-handler-config]]
10 The default handler that the client uses is a combination handler. When
11 executing in synchronous mode, the handler uses `CurlHandler`, which executes
13 (future) mode is enabled, the handler switches to `CurlMultiHandler`, which uses
17 You can configure the HTTP handler with one of several helper functions, or
18 provide your own custom handler:
32 For details on creating your own custom Ring handler, please see the
35 The default handler is recommended in almost all cases. This allows fast
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapClient.php74 protected $handler;
311 return $this->handler()->send($request, ...$controls);
394 return $this->handler()->controls();
432 * @param ClientProtocolHandler|null $handler
435 public function setProtocolHandler(ClientProtocolHandler $handler = null): self
437 $this->handler = $handler;
449 return ($this->handler !== null && $this->handler->isConnected());
463 protected function handler()
70 protected $handler; global() variable in FreeDSx\\Ldap\\LdapClient
416 setProtocolHandler(ClientProtocolHandler $handler = null) global() argument
443 protected function handler(): ClientProtocolHandler global() function in FreeDSx\\Ldap\\LdapClient
[all...]
/plugin/calendoku/syntax/
H A Dshowicalendar.php28 function handle($match, $state, $pos, &$handler) { argument
43 $handler->_addCall('cdata', array($match), $pos);
51 $handler->_addCall('cdata', array($match), $pos);
64 $handler->_addCall('cdata', array($match), $pos);
72 $handler->_addCall('cdata', array($match), $pos);
82 reHandleText($componenttext, $pos, $handler);
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
H A DHandlerRegistry.php41 public function registerSubscribingHandler(SubscribingHandlerInterface $handler): void argument
43 foreach ($handler->getSubscribingMethods() as $methodData) {
45 …n, but only got "%s" for %s.', implode('" and "', array_keys($methodData)), \get_class($handler)));
55 …this->registerHandler($direction, $methodData['type'], $methodData['format'], [$handler, $method]);
63 … public function registerHandler(int $direction, string $typeName, string $format, $handler): void argument
65 $this->handlers[$direction][$typeName][$format] = $handler;
/plugin/combo/action/
H A Dlinkmove.php252 * The handlers is the name of the component (ie refers to the {@link syntax_plugin_combo_link} handler)
264 * @param helper_plugin_move_handler $handler
266 public function rewrite_combo($match, $state, $pos, $plugin, helper_plugin_move_handler $handler) argument
284 $handler->calls .= $match;
289 * All environment on the {@link helper_plugin_move_handler handler} are private
290 * We can't get it, we just hack around the move of the handler then
299 $handler->calls .= $match;
305 $handler->calls .= $match;
313 $handler->internallink($match, $state, $pos);
320 if (substr($handler
[all...]
/plugin/preservefilenames/
H A Daction.php38 $handler = new action_plugin_preservefilenames_adorabelle();
42 $handler = new action_plugin_preservefilenames_angua();
46 $handler = new action_plugin_preservefilenames_anteater();
51 $handler->register($controller);
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.utils.inc.php36 $handler =& CSS::get_handler(CSS_DISPLAY);
37 if ($handler->get($state->getState()) === "none") {
44 $handler->css('table-cell', $pipeline);
50 if ($handler->get($css_state->getState()) === 'block') {
53 $handler->css('-button', $pipeline);
/plugin/pageredirect/
H A Daction.php209 public function rewrite_redirect($match, $state, $pos, $plugin, helper_plugin_move_handler $handler) { argument
224 if (method_exists($handler, 'adaptRelativeId')) {
225 $new_src = $handler->adaptRelativeId($src);
227 $new_src = $handler->resolveMoves($src, 'page');
228 $new_src = $handler->relativeLink($src, $new_src, 'page');
246 if (method_exists($handler, 'adaptRelativeId')) {
247 $new_src = $handler->adaptRelativeId($src);
249 $new_src = $handler->resolveMoves($src, 'page');
250 $new_src = $handler->relativeLink($src, $new_src, 'page');
/plugin/data-au/_test/
H A Ddb.test.php43 $handler = new Doku_Handler();
44 $dataau = $plugin->handle($test_table, 0, 0, $handler);
72 $handler = new Doku_Handler();
73 $dataau = $plugin->handle($test_table, 0, 0, $handler);
100 $handler = new Doku_Handler();
101 $dataau = $plugin->handle($test_table, 0, 0, $handler);
130 $handler = new Doku_Handler();
131 $dataau = $plugin->handle($test_table, 0, 0, $handler);
/plugin/data/_test/
H A Ddb.test.php
/plugin/refnotes/syntax/
H A Dreferences.php114 public function handle($match, $state, $pos, Doku_Handler $handler) { argument
130 $handler->addCall('cdata', array($match), $pos);
306 private $handler; variable in refnotes_nested_call_writer
312 * HACK: Fix compatibility with PHP versions before 7.2 by passing handler as second optional
318 public function __construct(\dokuwiki\Parsing\Handler\CallWriterInterface $callWriter, $handler = NULL) { argument
319 $this->handler = $handler;
321 parent::__construct($this->handler->getCallWriter());
328 $this->callWriterBackup = $this->handler->getCallWriter();
330 $this->handler
[all...]
/plugin/creole/syntax/
H A Dpreinline.php33 function handle($match, $state, $pos, Doku_Handler $handler) { argument
36 $handler->addCall('monospace_open', array(), $pos);
39 $handler->addCall('unformatted', array($match), $pos);
42 $handler->addCall('monospace_close', array(), $pos);
/plugin/diagrams/syntax/
H A Dmediafile.php45 * @param Doku_Handler $handler
48 public function handle($match, $state, $pos, Doku_Handler $handler) argument
56 $handler->media($match, $state, $pos);
71 * @param helper_plugin_move_handler $handler
74 public function handleMove($match, $state, $pos, $plugin, $handler) argument
78 $handler->media($match, $state, $pos);

12345678910>>...54