Home
last modified time | relevance | path

Searched refs:handler (Results 101 – 125 of 1340) sorted by relevance

12345678910>>...54

/plugin/markdowku/
H A Dgithubcodeblocks.php28 function handle($match, $state, $pos, Doku_Handler $handler) { argument
38 $handler->_addCall('file', array($text, $lang, 'snippet.'.$lang), $pos);
40 $handler->_addCall('code', array($text, $lang), $pos);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/
H A DErrorHandler.php73 $handler = new static($logger);
75 $handler->registerErrorHandler($errorLevelMap);
78 $handler->registerExceptionHandler($exceptionLevelMap);
81 $handler->registerFatalHandler($fatalLevel);
84 return $handler;
254 foreach ($this->logger->getHandlers() as $handler) {
255 $handler->close();
/plugin/yuriigantt/
H A Dsyntax.php73 * @param Doku_Handler|Handler $handler
76 public function handle($match, $state, $pos, \Doku_Handler $handler) argument
93 if ($handler instanceof Handler) {
94 $handler->setDatabase($database);
/plugin/yuriigantt/_test/Drivers/
H A Dembedded.test.php44 $handler = new Handler();
45 $lexer = new Lexer($handler, Embedded::MODE);
48 $instructions = $handler->calls;
70 $database = $handler->getDatabase();
/plugin/struct/syntax/
H A Dglobal.php35 * @param int $state The state of the handler
37 * @param Doku_Handler $handler The handler
40 public function handle($match, $state, $pos, Doku_Handler $handler)
43 $config = parent::handle($match, $state, $pos, $handler);
39 handle($match, $state, $pos, Doku_Handler $handler) global() argument
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClientBuilder.php68 private $handler; variable in Elasticsearch\\ClientBuilder
221 * Get the default handler
239 throw new \RuntimeException('Elasticsearch-PHP requires cURL, or a custom HTTP handler.');
246 * Get the multi handler for async (CurlMultiHandler)
255 throw new \RuntimeException('CurlMulti handler requires cURL.');
260 * Get the handler instance (CurlHandler)
269 throw new \RuntimeException('CurlSingle handler requires cURL.');
343 * Set the HTTP handler (cURL is default)
345 * @param mixed $handler
347 public function setHandler($handler) argument
[all...]
/plugin/combo/syntax/
H A Dheadingwiki.php119 * @param Doku_Handler $handler
122 public function handle($match, $state, $pos, Doku_Handler $handler): array argument
136 $callStack = CallStack::createFromHandler($handler);
147 return PluginUtility::handleAndReturnUnmatchedData(self::TAG, $match, $handler);
151 $returnedData = HeadingTag::handleExit($handler);
156 $callStack = CallStack::createFromHandler($handler);
H A Dcode.php118 * @param Doku_Handler $handler
123 function handle($match, $state, $pos, Doku_Handler $handler) argument
137 $data = PluginUtility::handleAndReturnUnmatchedData(self::CODE_TAG, $match, $handler);
143 $callStack = CallStack::createFromHandler($handler);
155 $callStack = CallStack::createFromHandler($handler);
H A Dwebcode.php146 * @param Doku_Handler $handler
152 public function handle($match, $state, $pos, Doku_Handler $handler) argument
174 return PluginUtility::handleAndReturnUnmatchedData(WebCodeTag::TAG, $match, $handler);
179 $array = WebCodeTag::handleExit($handler);
/plugin/manlink/
H A Dsyntax.php23 function handle($match, $state, $pos, Doku_Handler $handler){ argument
28 $handler->_addCall('cdata', array(substr($match, 1)), $pos);
45 $handler->_addCall('externallink', array($target, $match), $pos);
/plugin/fedauth/
H A Daction.php33 var $handler = null; variable in action_plugin_fedauth
91 * Dokuwiki built-in AJAX handler 'lib/exe/ajax.php' expects $_GET['call'] or
158 … $this->handler =& load_handler_class($this, 'signin', USER_CMD_SCOPE, $cdata['prid'], 'login');
159 $result = $this->handler->callService($pro, $cdata['svcd'], true);
248 … $this->handler =& load_handler_class($this, $this->cmd, USER_CMD_SCOPE, $this->provid, 'login');
249 $result = $this->handler->process();
268 $this->handler->html();
276 $this->handler->html();
/plugin/bureaucracy-au/helper/
H A Dactionscript.php43 $handler = new $className;
45 …if (!is_a($handler, dokuwiki\plugin\bureaucracy\interfaces\bureaucracyau_handler_interface::class)…
49 return $handler->handleData($fields, $thanks);
/plugin/bureaucracyau/helper/
H A Dactionscript.php43 $handler = new $className;
45 …if (!is_a($handler, dokuwiki\plugin\bureaucracyau\interfaces\bureaucracyau_handler_interface::clas…
49 return $handler->handleData($fields, $thanks);
/plugin/bureaucracy/helper/
H A Dactionscript.php43 $handler = new $className;
45 …if (!is_a($handler, dokuwiki\plugin\bureaucracy\interfaces\bureaucracy_handler_interface::class)) {
49 return $handler->handleData($fields, $thanks);
/plugin/creole/helper/
H A Deventhandler.php97 public function execute ($queuedEvent, $pos, $match, &$handler) { argument
99 call_user_func($this->callback, $queuedEvent, $pos, $match, $handler);
144 public function notifyEvent ($state, $clazz, $tag, $pos, $match, $handler) { argument
160 … self::$callbacks [$cb_index]->execute(self::$queue [$q_index], $pos, $match, $handler);
194 public function writeCall($class, $state, $data1, $data2, $pos, $match, &$handler) { argument
195 $handler->addPluginCall($class, array($state, $data1, $data2), $state, $pos, $match);
/plugin/vshare/syntax/
H A Ddebug.php40 public function handle($match, $state, $pos, Doku_Handler $handler)
54 $handler = new \Doku_Handler();
63 $data = $syntax->handle("{{ $site>{$info['vid']} }}", DOKU_LEXER_MATCHED, 0, $handler);
38 handle($match, $state, $pos, Doku_Handler $handler) global() argument
/plugin/findologicxmlexport/vendor/hoa/stream/
H A DStream.php197 Stream $handler, argument
218 self::HANDLER => $handler,
219 self::RESOURCE => $handler->_open($streamName, $context),
224 $handler
229 $handler
232 $handler->_borrowing = true;
237 = $handler->_open($streamName, $context);
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/
H A DStandardTagFactory.php144 public function registerTagHandler($tagName, $handler) argument
147 Assert::stringNotEmpty($handler);
148 Assert::classExists($handler);
149 Assert::implementsInterface($handler, StaticMethod::class);
157 $this->tagHandlerMappings[$tagName] = $handler;
/plugin/findologicxmlexport/vendor/goetas-webservices/xsd2php-runtime/tests/
H A DXmlSchemaDateHandlerDeserializationTest.php23 protected $handler; variable in GoetasWebservices\\Xsd\\XsdToPhpRuntime\\Tests\\Jms\\Handler\\XmlSchemaDateHandlerDeserializationTest
36 $this->handler = new XmlSchemaDateHandler();
76 … $deserialized = $this->handler->deserializeDate($this->visitor, $element, [], $this->context);
96 $this->handler->deserializeDate($this->visitor, $element, [], $this->context);
/plugin/wrap/syntax/
H A Ddiv.php40 function handle($match, $state, $pos, Doku_Handler $handler){ argument
49 $handler->addCall('cdata', array($match), $pos);
54 // (copied from core header() in inc/parser/handler.php)
61 $handler->addCall('header',array($title,$level,$pos), $pos);
64 $handler->addPluginCall('wrap_closesection', array(), DOKU_LEXER_SPECIAL, $pos, '');
/plugin/combo/ComboStrap/
H A DCarrouselTag.php58 public static function handleEnter(\Doku_Handler $handler): array argument
60 $callStack = CallStack::createFromHandler($handler);
69 public static function handleExit(\Doku_Handler $handler): array argument
71 $callStack = CallStack::createFromHandler($handler);
/plugin/yuriigantt/src/Driver/
H A DEmbedded.php37 protected $handler; variable in dokuwiki\\plugin\\yuriigantt\\src\\Driver\\Embedded
59 $this->handler = new Handler();
60 $this->lexer = new Lexer($this->handler, self::MODE);
80 $this->handler = $this->lexer = $this->pageId = null;
133 foreach ($this->handler->calls as $instruction) {
172 return $this->handler->getDatabase();
/plugin/showif/
H A Dsyntax.php.alternative.version88 function handle($match, $state, $pos, &$handler){
99 $ReWriter = new Doku_Handler_Nest($handler->CallWriter,'plugin_showif');
100 $handler->CallWriter = & $ReWriter;
106 $handler->_addCall('cdata', array($match), $pos);
112 $calls = $handler->CallWriter->calls;
115 $ReWriter = & $handler->CallWriter;
116 $handler->CallWriter = & $ReWriter->CallWriter;
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.property.declaration.php31 $handler =& CSS::get_handler($code);
32 if (is_null($handler)) {
47 $declaration->_value = $handler->parse($value, $pipeline);
/plugin/headernofloat/
H A Dsyntax.php37 function handle( $match, $state, $pos, &$handler ) argument
47 if ($handler->status['section']) {
51 $handler->status['section'] = true;

12345678910>>...54