Home
last modified time | relevance | path

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

12345678910>>...54

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DSamplingHandler.php41 protected $handler; variable in Monolog\\Handler\\SamplingHandler
54 public function __construct($handler, int $factor) argument
57 $this->handler = $handler;
60 if (!$this->handler instanceof HandlerInterface && !is_callable($this->handler)) {
95 if (!$this->handler instanceof HandlerInterface) {
96 $this->handler = ($this->handler)($record, $this);
102 return $this->handler;
110 $handler = $this->getHandler();
112 $handler->setFormatter($formatter);
125 $handler = $this->getHandler();
[all …]
H A DHandlerWrapper.php39 protected $handler; variable in Monolog\\Handler\\HandlerWrapper
43 $this->handler = $handler;
51 return $this->handler->isHandling($record);
59 return $this->handler->handle($record);
67 $this->handler->handleBatch($records);
75 $this->handler->close();
84 $this->handler->pushProcessor($callback);
98 return $this->handler->popProcessor();
110 $this->handler->setFormatter($formatter);
124 return $this->handler->getFormatter();
[all …]
H A DGroupHandler.php39 foreach ($handlers as $handler) {
54 foreach ($this->handlers as $handler) {
55 if ($handler->isHandling($record)) {
73 foreach ($this->handlers as $handler) {
74 $handler->handle($record);
94 foreach ($this->handlers as $handler) {
95 $handler->handleBatch($records);
103 foreach ($this->handlers as $handler) {
105 $handler->reset();
114 foreach ($this->handlers as $handler) {
[all …]
H A DFilterHandler.php41 protected $handler; variable in Monolog\\Handler\\FilterHandler
71 $this->handler = $handler;
75 if (!$this->handler instanceof HandlerInterface && !is_callable($this->handler)) {
166 if (!$this->handler instanceof HandlerInterface) {
167 $this->handler = ($this->handler)($record, $this);
168 if (!$this->handler instanceof HandlerInterface) {
173 return $this->handler;
181 $handler = $this->getHandler();
183 $handler->setFormatter($formatter);
196 $handler = $this->getHandler();
[all …]
H A DFingersCrossedHandler.php49 protected $handler; variable in Monolog\\Handler\\FingersCrossedHandler
92 $this->handler = $handler;
102 if (!$this->handler instanceof HandlerInterface && !is_callable($this->handler)) {
215 if (!$this->handler instanceof HandlerInterface) {
216 $this->handler = ($this->handler)($record, $this);
217 if (!$this->handler instanceof HandlerInterface) {
222 return $this->handler;
230 $handler = $this->getHandler();
232 $handler->setFormatter($formatter);
245 $handler = $this->getHandler();
[all …]
H A DBufferHandler.php33 protected $handler; variable in Monolog\\Handler\\BufferHandler
46 * @param HandlerInterface $handler Handler.
53 $this->handler = $handler;
99 $this->handler->handleBatch($this->buffer);
117 $this->handler->close();
137 if ($this->handler instanceof ResettableInterface) {
138 $this->handler->reset();
147 if ($this->handler instanceof FormattableHandlerInterface) {
148 $this->handler->setFormatter($formatter);
161 if ($this->handler instanceof FormattableHandlerInterface) {
[all …]
H A DOverflowHandler.php40 private $handler; variable in Monolog\\Handler\\OverflowHandler
62 * @param HandlerInterface $handler
66 HandlerInterface $handler, argument
71 $this->handler = $handler;
113 $this->handler->handle($buffered);
119 $this->handler->handle($record);
129 if ($this->handler instanceof FormattableHandlerInterface) {
130 $this->handler->setFormatter($formatter);
135 …throw new \UnexpectedValueException('The nested handler of type '.get_class($this->handler).' does…
143 if ($this->handler instanceof FormattableHandlerInterface) {
[all …]
/plugin/creole/syntax/
H A Dtable.php49 $ReWriter = new Table($handler->getCallWriter());
50 $handler->setCallWriter($ReWriter);
52 $handler->addCall('table_start', array(), $pos);
56 $handler->addCall('tablecell', array(), $pos);
62 $handler->addCall('table_end', array(), $pos);
63 $handler->getCallWriter()->process();
64 $ReWriter = $handler->getCallWriter();
82 $handler->addCall('table_row', array(), $pos);
83 $handler->addCall('tablecell', array(), $pos);
85 $handler->addCall('table_row', array(), $pos);
[all …]
H A Dmonospace.php46 function handle($match, $state, $pos, Doku_Handler $handler) { argument
58 … $this->eventhandler->notifyEvent('open', 'monospace', 'dw-monospace', $pos, $match, $handler);
59 $handler->addCall('monospace_open', array(), $pos);
61 … $this->eventhandler->notifyEvent('open', 'monospace', 'creole-monospace', $pos, $match, $handler);
66 $handler->addCall('cdata', array($match), $pos);
70 … $this->eventhandler->notifyEvent('close', 'monospace', 'dw-monospace', $pos, $match, $handler);
71 $handler->addCall('monospace_close', array(), $pos);
73 …$this->eventhandler->notifyEvent('close', 'monospace', 'creole-monospace', $pos, $match, $handler);
94 public function onHeaderCallback (creole_syntax_event $myEvent, $pos, $match, $handler) { argument
95 … $this->eventhandler->notifyEvent('close', 'monospace', 'dw-monospace', $pos, $match, $handler);
[all …]
H A Dlistblock.php52 function handle($match, $state, $pos, Doku_Handler $handler) { argument
55 $this->eventhandler->notifyEvent('open', 'list', NULL, $pos, $match, $handler);
56 $ReWriter = new Doku_Handler_Creole_List($handler->getCallWriter());
57 $handler->setCallWriter($ReWriter);
58 $handler->addCall('list_open', array($match), $pos);
61 $this->eventhandler->notifyEvent('close', 'list', NULL, $pos, $match, $handler);
62 $handler->addCall('list_close', array(), $pos);
63 $ReWriter = $handler->getCallWriter();
65 $handler->setCallWriter($ReWriter->getCallWriter());
68 $handler->addCall('list_item', array($match), $pos);
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DMiddleware.php26 return function (callable $handler) {
29 return $handler($request, $options);
35 return $handler($request, $options)
54 return function (callable $handler) {
57 return $handler($request, $options);
59 return $handler($request, $options)->then(
148 return function (callable $handler) {
149 return new RedirectMiddleware($handler);
216 return function (callable $handler) {
217 return new PrepareBodyMiddleware($handler);
[all …]
H A DHandlerStack.php15 private $handler; variable in GuzzleHttp\\HandlerStack
42 $stack = new self($handler ?: choose_handler());
52 * @param callable $handler Underlying HTTP handler.
56 $this->handler = $handler;
69 $handler = $this->resolve();
71 return $handler($request, $options);
83 if ($this->handler) {
109 public function setHandler(callable $handler) argument
111 $this->handler = $handler;
122 return (bool) $this->handler;
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dhtml.attrs.inc.php215 $handler->css('none', $pipeline);
380 $handler->replace($handler->parse($root->get_attribute('align')),
393 $handler->replace(LA_LEFT,
397 $handler->replace(LA_CENTER,
401 $handler->replace(LA_RIGHT,
405 $handler->replace(LA_LEFT,
547 $handler->css('left',$pipeline);
626 $handler->css($value,$pipeline);
638 $handler->css($value,$pipeline);
698 $handler->css($newsize, $pipeline);
[all …]
H A Dpdf.fpdf.php100 function out(&$handler) { argument
102 $handler->offsets[$this->get_object_id()] = strlen($handler->buffer);
103 $handler->_out($handler->_indirect_object($this));
128 function pdf(&$handler) { argument
129 return $handler->_dictionary($this->_dict($handler));
172 function pdf(&$handler) { argument
361 $wPt=$handler->fwPt;
362 $hPt=$handler->fhPt;
364 $wPt=$handler->fhPt;
365 $hPt=$handler->fwPt;
[all …]
H A Dcss.inc.php15 foreach ($handlers as $property => $handler) {
44 if ($handler->isInheritableText()) {
57 if ($handler->isInheritable()) {
83 $handler =& $css->_get_handler($property);
84 $value = $handler->default_value();
95 $handler =& $css->_get_handler($property);
96 return $handler;
121 function register_css_property(&$handler) { argument
122 $property = $handler->get_property_code();
123 $name = $handler->get_property_name();
[all …]
/plugin/authfacebook/lib/HttpClients/
H A DHttpClientsFactory.php40 * @param FacebookHttpClientInterface|Client|string|null $handler
47 public static function createHttpClient($handler) argument
49 if (!$handler) {
53 if ($handler instanceof FacebookHttpClientInterface) {
54 return $handler;
57 if ('stream' === $handler) {
60 if ('curl' === $handler) {
68 if ('guzzle' === $handler && !class_exists('GuzzleHttp\Client')) {
72 if ($handler instanceof Client) {
73 return new FacebookGuzzleHttpClient($handler);
[all …]
/plugin/numberedheadings/
H A Dsyntax.php73 public function handle($match, $state, $pos, Doku_Handler $handler)
138 // do same as parser::handler->header()
139 if ($this->getSectionState($handler)) $this->addCall($handler, 'section_close', [], $pos);
142 $handler->addPluginCall(substr(get_class($this), 14), $data, $state, $pos, $match);
143 $this->addCall($handler, 'section_open', [$level], $pos);
144 $this->setSectionState($handler, true);
157 // are converted to normal headers in PARSER_HANDLER_DONE event handler
163 // add a new call using CallWriter of the handler object
164 private function addCall(Doku_Handler $handler,
66 handle($match, $state, $pos, Doku_Handler $handler) global() argument
155 addCall(Doku_Handler $handler, $method, $args, $pos) global() argument
167 getSectionstate(Doku_Handler $handler) global() argument
177 setSectionstate(Doku_Handler $handler, $value) global() argument
[all...]
/plugin/extlist/
H A Dsyntax.php219 protected function _writeCall($tag, $attr, $state, $pos, $match, $handler) argument
221 $handler->addPluginCall($this->getPluginName(),
230 private function _openList($m, $pos, $match, $handler) argument
251 $this->_writeCall($tag,$attr,DOKU_LEXER_ENTER, $pos,$match,$handler);
257 private function _closeList($m, $pos, $match, $handler)
263 $this->_writeCall($tag,'',DOKU_LEXER_EXIT, $pos,$match,$handler);
269 private function _openItem($m, $pos, $match, $handler)
287 $this->_writeCall($tag,$attr,DOKU_LEXER_ENTER, $pos,$match,$handler);
293 private function _closeItem($m, $pos, $match, $handler)
296 $this->_writeCall($tag,'',DOKU_LEXER_EXIT, $pos,$match,$handler);
255 _closeList($m, $pos, $match, $handler) global() argument
267 _openItem($m, $pos, $match, $handler) global() argument
291 _closeItem($m, $pos, $match, $handler) global() argument
300 _openWrapper($m, $pos, $match, $handler) global() argument
322 _closeWrapper($m, $pos, $match, $handler) global() argument
344 _openParagraph($pos, $match, $handler) global() argument
352 _closeParagraph($pos, $match, $handler) global() argument
360 handle($match, $state, $pos, Doku_Handler $handler) global() argument
[all...]
/plugin/components/lib/
H A Daction_manager.php23 private $handler = NULL; variable in Doku_Action_Manager
39 $handler = new $class;
40 return ($handler->action() != $action) ? NULL : $handler;
57 $handler = NULL;
60 if (!$handler) {
61 $handler = $new;
66 $handler = $new;
71 return $handler;
87 $this->handler = NULL;
110 if (!$this->handler) return FALSE;
[all …]
/plugin/markdowku/
H A Dcodeblocks.php35 function handle($match, $state, $pos, Doku_Handler $handler) { argument
38 $ReWriter = new Preformatted($handler->getCallWriter());
39 $handler->setCallWriter($ReWriter);
40 $handler->_addCall('preformatted_start', array($match), $pos);
43 $handler->_addCall('preformatted_newline', array($match), $pos);
46 $handler->_addCall('preformatted_content', array($match), $pos);
49 $handler->_addCall('preformatted_end', array(), $pos);
50 $handler->_addCall('preformatted_content', array($match), $pos);
51 $handler->getCallWriter()->process();
52 $ReWriter = & $handler->getCallWriter();
[all …]
H A Dblockquotes.php50 function handle($match, $state, $pos, Doku_Handler $handler) { argument
58 $handler->setCallWriter($ReWriter);
59 $handler->_addCall('quote_start', $quotearg, $pos);
61 $handler->_addCall('quote_end', array(), $pos);
62 $handler->getCallWriter()->process();
63 $ReWriter = & $handler->getCallWriter();
64 $handler->setCallWriter($ReWriter->getCallWriter());
68 $handler->_addCall('quote_newline', $quotearg, $pos);
72 $plugin->handle($quoteinarg, $state, $pos, $handler);
78 $plugin->handle($quoteinarg, $state, $pos, $handler);
[all …]
H A Dheadersetext.php33 function handle($match, $state, $pos, Doku_Handler $handler) { argument
41 if ($handler->getStatus('section'))
42 $handler->_addCall('section_close', array(), $pos);
43 $handler->setStatus('section_edit_start', $pos);
44 $handler->setStatus('section_edit_level', $level);
45 $handler->setStatus('section_edit_title', $title);
46 $handler->_addCall('header', array($title, $level, $pos), $pos);
47 $handler->_addCall('section_open', array($level), $pos);
48 $handler->setStatus('section', true);
/plugin/calendoku/syntax/
H A Dshowtable.php31 function handle($match, $state, $pos, &$handler) { argument
126 $this->startCalendar($pos, $handler);
132 $this->endCalendar($pos, $handler);
135 function startCalendar($pos, &$handler) { argument
137 $handler->_addCall('table_open', array(), $pos);
141 reHandleText($fielddesc, $pos, $handler);
148 function endCalendar($pos, &$handler) { argument
150 $handler->_addCall('table_close', array(), $pos);
154 $handler->_addCall('tablerow_open', array(), $pos);
169 reHandleText($field, $pos, $handler);
[all …]
/plugin/mediasyntax/syntax/
H A Dlistblock.php43 function handle($match, $state, $pos, Doku_Handler $handler)
48 $ReWriter = new Doku_Handler_Mediasyntax_List($handler->getCallWriter());
49 $handler->setCallWriter($ReWriter);
50 $handler->addCall('list_open', array($match), $pos);
53 $handler->addCall('list_close', array(), $pos);
54 $handler->getCallWriter()->process(); argument
55 $ReWriter = $handler->getCallWriter();
56 $handler->setCallWriter($ReWriter->getCallWriter());
59 $handler->addCall('list_item', array($match), $pos);
62 $handler
[all...]
/plugin/siteexport/syntax/
H A Dtoctools.php43 private function findPreviousSectionOpen( Doku_Handler $handler ) { argument
44 foreach( array_reverse( $handler->calls ) as $calls ) {
52 …private function addInstructionstoHandler( $match, $state, $pos, Doku_Handler $handler, $instructi… argument
55 …if ( ( method_exists( $handler, 'getStatus') && $handler->getStatus('section') ) || $handler->stat…
56 $handler->_addCall('section_close', array(), $pos);
60 $level = $this->findPreviousSectionOpen( $handler );
61 $handler->_addCall('plugin', array('siteexport_toctools', $instructions, $state), $pos);
62 $handler->_addCall('section_open', array($level), $pos+strlen($match) );
68 public function handle($match, $state, $pos, Doku_Handler $handler){ argument
77 $handler->_addCall('cdata', array($match), $pos);
[all …]

12345678910>>...54