Home
last modified time | relevance | path

Searched refs:handler (Results 26 – 50 of 1340) sorted by relevance

12345678910>>...54

/plugin/mediasyntax/syntax/
H A Dheader.php29 function handle($match, $state, $pos, Doku_Handler $handler)
41 if ($handler->getStatus('section')) $handler->addCall('section_close', array(), $pos);
45 $handler->setStatus('section_edit_start', $pos);
46 $handler->setStatus('section_edit_level', $level);
47 $handler->setStatus('section_edit_title', $title);
50 $handler->addCall('header', array($title, $level, $pos), $pos);
52 $handler->addCall('section_open', array($level), $pos);
53 $handler->setStatus('section', true);
40 handle($match, $state, $pos, Doku_Handler $handler) global() argument
/plugin/markdowku/
H A Dheaderatx.php26 function handle($match, $state, $pos, Doku_Handler $handler) { argument
39 if ($handler->getStatus('section'))
40 $handler->_addCall('section_close', array(), $pos);
42 $handler->setStatus('section_edit_start', $pos);
43 $handler->setStatus('section_edit_level', $level);
44 $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);
H A Dolists.php39 function handle($match, $state, $pos, Doku_Handler $handler) { argument
42 $ReWriter = new Doku_Handler_Markdown_Ordered_List($handler->getCallWriter());
43 $handler->setCallWriter($ReWriter);
44 $handler->_addCall('list_open', array($match), $pos);
47 $handler->_addCall('list_item', array($match), $pos);
50 $handler->_addCall('cdata', array($match), $pos);
53 $handler->_addCall('list_close', array(), $pos);
54 $handler->getCallWriter()->process();
55 $ReWriter = & $handler->getCallWriter();
56 $handler->setCallWriter($ReWriter->getCallWriter());
H A Dulists.php40 function handle($match, $state, $pos, Doku_Handler $handler) { argument
43 $ReWriter = new Doku_Handler_Markdown_Unordered_List($handler->getCallWriter());
44 $handler->setCallWriter($ReWriter);
45 $handler->_addCall('list_open', array($match), $pos);
48 $handler->_addCall('list_item', array($match), $pos);
51 $handler->_addCall('cdata', array($match), $pos);
54 $handler->_addCall('list_close', array(), $pos);
55 $handler->getCallWriter()->process();
56 $ReWriter = & $handler->getCallWriter();
57 $handler->setCallWriter($ReWriter->getCallWriter());
/plugin/move/_test/
H A Dhandler.test.php22 $handler = plugin_load('helper', 'move_handler');
23 $handler->init('deep:namespace:page', 'used:to:be:here', array(), array(), array());
35 $this->assertEquals($rel, $handler->relativeLink('foo', $new, 'page'));
38 …$this->assertEquals('.deeper:', $handler->relativeLink('.deeper:', 'deep:namespace:deeper:start', …
39 $this->assertEquals('.:', $handler->relativeLink('.:', 'deep:namespace:start', 'page'));
44 $handler = plugin_load('helper', 'move_handler');
45 $handler->init(
71 $this->assertEquals($id, $handler->resolveMoves($match, 'page'));
/plugin/html2pdf/html2pdf/html2ps/fpdf/
H A Dfpdf.php75 function out(&$handler) { argument
77 $handler->offsets[$this->get_object_id()] = strlen($handler->buffer);
78 $handler->_out($handler->_indirect_object($this));
103 function pdf(&$handler) { argument
104 return $handler->_dictionary($this->_dict($handler));
146 function pdf(&$handler) { argument
265 $wPt=$handler->fwPt;
266 $hPt=$handler->fhPt;
268 $wPt=$handler->fhPt;
269 $hPt=$handler->fwPt;
[all …]
/plugin/authfacebook/lib/PersistentData/
H A DPersistentDataFactory.php38 * @param PersistentDataInterface|string|null $handler
44 public static function createPersistentDataHandler($handler) argument
46 if (!$handler) {
52 if ($handler instanceof PersistentDataInterface) {
53 return $handler;
56 if ('session' === $handler) {
59 if ('memory' === $handler) {
/plugin/exttab3/
H A Dsyntax.php90 protected function writeCall($tag, $attr, $state, $pos, $match, $handler) argument
96 protected function open($tag, $attr, $pos, $match, $handler) argument
100 $handler->plugin($match, 'addPluginCall', $pos, $this->getPluginName());
103 protected function close($tag, $pos, $match, $handler) argument
107 $handler->plugin($match, 'addPluginCall', $pos, $this->getPluginName());
173 public function handle($match, $state, $pos, Doku_Handler $handler) argument
187 $this->open($tag, $attr, $pos, $match, $handler);
192 $this->close($oldtag, $pos, $match, $handler);
201 $this->close($oldtag, $pos, $match, $handler);
266 $handler->base($match, $state, $pos);
[all …]
/plugin/creole/syntax/
H A Dsubscript.php46 function handle($match, $state, $pos, Doku_Handler $handler) { argument
55 $this->eventhandler->notifyEvent('open', 'subscript', NULL, $pos, $match, $handler);
56 $handler->addCall('subscript_open', array(), $pos);
59 $handler->addCall('cdata', array($match), $pos);
62 … $this->eventhandler->notifyEvent('close', 'subscript', NULL, $pos, $match, $handler);
63 $handler->addCall('subscript_close', array(), $pos);
73 public function onHeaderCallback (creole_syntax_event $myEvent, $pos, $match, $handler) { argument
74 $this->eventhandler->notifyEvent('close', 'subscript', NULL, $pos, $match, $handler);
75 $handler->addCall('subscript_close', array(), $pos);
H A Dsuperscript.php46 function handle($match, $state, $pos, Doku_Handler $handler) { argument
55 … $this->eventhandler->notifyEvent('open', 'superscript', NULL, $pos, $match, $handler);
56 $handler->addCall('superscript_open', array(), $pos);
59 $handler->addCall('cdata', array($match), $pos);
62 … $this->eventhandler->notifyEvent('close', 'superscript', NULL, $pos, $match, $handler);
63 $handler->addCall('superscript_close', array(), $pos);
73 public function onHeaderCallback (creole_syntax_event $myEvent, $pos, $match, $handler) { argument
74 $this->eventhandler->notifyEvent('close', 'superscript', NULL, $pos, $match, $handler);
75 $handler->addCall('superscript_close', array(), $pos);
H A Dheader.php40 function handle($match, $state, $pos, Doku_Handler $handler) { argument
56 $this->eventhandler->notifyEvent('insert', 'header', 'header', $pos, $match, $handler);
58 if ($handler->getStatus('section')) $handler->addCall('section_close', array(), $pos);
60 $handler->addCall('header', array($title, $level, $pos), $pos);
62 $handler->addCall('section_open', array($level), $pos);
63 $handler->setStatus('section', true) ;
/plugin/header3/
H A Dsyntax.php39 function handle($match, $state, $pos, Doku_Handler $handler){ argument
44 if ($handler->status['section']) $handler->_addCall('section_close',array(),$pos);
45 $handler->addPluginCall('header3',array($state),$state,$pos,$match);
46 $handler->CallWriter = & new Doku_Handler_Nest($handler->CallWriter,'nest_close');
49 $handler->_addCall('cdata', array($match), $pos);
52 $handler->_addCall('nest_close', array(), $pos);
53 $handler->CallWriter->process();
54 $handler->CallWriter = & $handler->CallWriter->CallWriter;
55 … $handler->addPluginCall('header3',array($state,$this->h_level,$this->h_pos),$state,$pos,$match);
56 $handler->_addCall('section_open',array($this->h_level),$pos);
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
H A DLazyHandlerRegistry.php40 … public function registerHandler(int $direction, string $typeName, string $format, $handler): void argument
42 parent::registerHandler($direction, $typeName, $format, $handler);
59 $handler = $this->handlers[$direction][$typeName][$format];
60 if (\is_array($handler) && \is_string($handler[0]) && $this->container->has($handler[0])) {
61 $handler[0] = $this->container->get($handler[0]);
64 return $this->initializedHandlers[$direction][$typeName][$format] = $handler;
/plugin/header2/
H A Dsyntax.php44 function handle($match, $state, $pos, Doku_Handler $handler){ argument
49 if ($handler->status['section']) $handler->_addCall('section_close',array(),$pos);
50 $handler->addPluginCall('header2',array($state),$state,$pos,$match);
51 $handler->CallWriter = & new Doku_Handler_Nest($handler->CallWriter,'nest_close');
54 $handler->_addCall('cdata', array($match), $pos);
57 $handler->_addCall('nest_close', array(), $pos);
58 $handler->CallWriter->process();
59 $handler->CallWriter = & $handler->CallWriter->CallWriter;
60 … $handler->addPluginCall('header2',array($state,$this->h_level,$this->h_pos),$state,$pos,$match);
61 $handler->_addCall('section_open',array($this->h_level),$pos);
[all …]
/plugin/button/
H A Daction.php13 * 19/11/2016 : rewrote move plugin handler to work with all button syntaxes
51 function move_newid($handler, $page, $type) argument
53 if (method_exists($handler, 'adaptRelativeId')) { // move plugin before version 2015-05-16
54 $newpage = $handler->adaptRelativeId($page);
56 $newpage = $handler->resolveMoves($page, $type);
57 $newpage = $handler->relativeLink($page, $newpage, $type);
62 public function rewrite_button($match, $state, $pos, $plugin, helper_plugin_move_handler $handler) argument
69 //if (($handler->id == $handler->origID) && ($handler
[all...]
/plugin/data/_test/
H A Dsyntax_plugin_data_entry.test.php
/plugin/data-au/_test/
H A Dsyntax_plugin_data_entry.test.php50 $handler = new Doku_Handler();
94 $handler = new Doku_Handler();
115 $handler = new Doku_Handler();
136 $handler = new Doku_Handler();
157 $handler = new Doku_Handler();
178 $handler = new Doku_Handler();
200 $handler = new Doku_Handler();
303 $handler = new Doku_Handler();
304 $result = $plugin->handle($entry, 0, 10, $handler);
333 $handler = new Doku_Handler();
[all …]
/plugin/components/lib/
H A Dajax_manager.php23 $handler = new $class;
24 $this->handlers[$handler->name()] = $handler;
41 foreach($this->handlers as $handler)
42 if ($handler->name() == $call) {
43 $handler->handle();
/plugin/webcomponent/syntax/
H A Dheading.php110 * @param Doku_Handler $handler
115 function handle($match, $state, $pos, Doku_Handler $handler) argument
130 if ($handler->status['section']) $handler->_addCall('section_close', array(), $pos);
131 $handler->_addCall('header', array($title, $level, $pos), $pos);
132 $handler->_addCall('section_open', array($level), $pos);
133 $handler->status['section'] = true;
/plugin/linebreak/
H A Dsyntax.php52 function handle($match, $state, $pos, &$handler){ argument
59 if (!isset($handler->status['plugin_linebreak'])) {
60 $handler->status['plugin_linebreak'] = $this->getConf('automatic');
63 if ($match == "\n") return array($handler->status['plugin_linebreak']);
66 $handler->status['plugin_linebreak'] = true;
68 $handler->status['plugin_linebreak'] = false;
/plugin/adhoctags/syntax/
H A Dabstract.php80 function handleEnterSpecial($match, $state, $pos, Doku_Handler $handler) { argument
88 function handleUnmatched($match, $state, $pos, Doku_Handler $handler) { argument
98 $handler->_addCall('header',array($title,$level,$pos), $pos);
101 $handler->addPluginCall('wrap_closesection', array(), DOKU_LEXER_SPECIAL, $pos, '');
104 $handler->addCall('cdata', array($match), $pos);
109 function handleMatched($match, $state, $pos, Doku_Handler $handler) { argument
114 function handleExit($match, $state, $pos, Doku_Handler $handler) { argument
125 function handle($match, $state, $pos, Doku_Handler $handler){ argument
133 return $this->handleEnterSpecial($match, $state, $pos, $handler);
137 return $this->handleUnmatched($match, $state, $pos, $handler);
[all...]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Attribute/
H A DAsMonologProcessor.php28 public $handler = null; variable in Monolog\\Attribute\\AsMonologProcessor
34 * @param string|null $handler The handler the processor should be pushed to.
39 ?string $handler = null, argument
43 $this->handler = $handler;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DFormErrorHandlerTest.php31 protected $handler; variable in JMS\\Serializer\\Tests\\Handler\\FormErrorHandlerTest
50 $this->handler = new FormErrorHandler(new Translator('en'));
60 $this->handler = null;
76 $this->handler = new FormErrorHandler();
150 $handler = new FormErrorHandler($translator);
165 $this->invokeMethod($handler, 'getErrorMessage', [$formError]);
173 $handler = new FormErrorHandler($translator);
189 $this->invokeMethod($handler, 'getErrorMessage', [$formError]);
197 $handler = new FormErrorHandler($translator, 'custom_domain');
212 $this->invokeMethod($handler, 'getErrorMessage', [$formError]);
[all …]
/plugin/fckg/
H A Dscript.js58 if ( handler.comment )
59 handler.comment( html.substring( 4, index ) );
91 if ( handler.chars )
92 handler.chars( text );
100 if ( handler.chars )
101 handler.chars( text );
133 if ( handler.start ) {
149 if ( handler.start )
150 handler.start( tagName, attrs, unary );
168 if ( handler.end )
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dbox.php120 $handler =& CSS::get_handler(CSS_DISPLAY);
187 $handler =& CSS::get_handler(CSS_DISPLAY);
188 $handler->css('-body', $pipeline);
191 $handler =& CSS::get_handler(CSS_DISPLAY);
192 $handler->css('-break', $pipeline);
197 $handler->css('-image', $pipeline);
352 $handler =& CSS::get_handler(CSS_MARGIN);
364 $handler =& CSS::get_handler(CSS_PADDING);
505 $handler =& CSS::get_handler(CSS_MARGIN);
506 $handler->css("0",$pipeline);
[all …]

12345678910>>...54