Home
last modified time | relevance | path

Searched refs:mode (Results 176 – 200 of 2447) sorted by last modified time

12345678910>>...98

/plugin/tag/syntax/
H A Dtag.php32 * @param string $mode Parser mode
34 function connectTo($mode) { argument
35 $this->Lexer->addSpecialPattern('\{\{tag>.*?\}\}', $mode, 'plugin_tag_tag');
68 * @param string $format Renderer mode (supported modes: xhtml and metadata)
H A Dtagpage.php36 * @param string $mode Parser mode
38 function connectTo($mode) { argument
39 $this->Lexer->addSpecialPattern('\{\{tagpage>.*?\}\}', $mode, 'plugin_tag_tagpage');
66 * @param string $format Renderer mode (supported modes: xhtml)
H A Dtopic.php30 * @param string $mode Parser mode
32 function connectTo($mode) { argument
34 $this->Lexer->addSpecialPattern('\{\{topic>}\}',$mode,'plugin_tag_topic');
35 $this->Lexer->addSpecialPattern('\{\{topic>.+?\}\}',$mode,'plugin_tag_topic');
73 * @param string $format Renderer mode (supported modes: xhtml and metadata)
/plugin/tag/
H A DCOPYING319 when it starts in an interactive mode:
/plugin/imapmarkers/
H A Djquery.imagemapster.js1348 addShapeGroup: function (areaData, mode, options) {
1355 opts = areaData.effectiveRenderOptions(mode);
1361 if (mode === 'select') {
1377 areaData.effectiveRenderOptions(mode)
2318 function navigateTo(mode, href, target) { argument
2319 switch (mode) {
2333 function getNavDetails(ar, mode, defaultHref) { argument
2334 if (mode === 'open') {
3412 effectiveRenderOptions: function (mode, options) { argument
3416 if (!opts || mode === 'highlight') {
[all …]
/plugin/imapmarkers/syntax/
H A Dmap.php62 public function connectTo($mode) { argument
63 if ($mode == "base") {
64 $this->Lexer->addEntryPattern('\{{2}(?i)IMAPMARKERS>[^\}]+\}{2}', $mode, $this->component);
197 public function render($mode, Doku_Renderer $renderer, $data) { argument
198 if ($mode == 'xhtml') {
H A Dreference.php40 function accepts($mode) { argument
41 if ($mode == substr(get_class($this), 7))
43 return parent::accepts($mode);
49 function connectTo($mode) { argument
50 $this->Lexer->addSpecialPattern('\{{2}(?i)IMAPMLOC>.+?\}{2}', $mode, $this->component);
91 function render($mode, Doku_Renderer $renderer, $data) { argument
92 if ($mode == 'xhtml') {
/plugin/translation/syntax/
H A Dnotrans.php37 public function connectTo($mode)
39 $this->Lexer->addSpecialPattern('~~NOTRANS~~', $mode, 'plugin_translation_notrans');
36 connectTo($mode) global() argument
H A Dtrans.php26 public function connectTo($mode)
28 $this->Lexer->addSpecialPattern('~~TRANS~~', $mode, 'plugin_translation_trans');
24 connectTo($mode) global() argument
/plugin/todo/syntax/
H A Dtodo.php76 * @param $mode String The desired rendermode.
80 public function connectTo($mode) {
81 $this->Lexer->addEntryPattern('<todo[\s]*?.*?>(?=.*?</todo>)', $mode, 'plugin_todo_todo');
82 $this->Lexer->addSpecialPattern(self::TODO_UNCHECK_ALL, $mode, 'plugin_todo_todo');
83 $this->Lexer->addSpecialPattern('~~NOTODO~~', $mode, 'plugin_todo_todo');
153 * @param $mode String The output format to generate. argument
158 public function render($mode, Doku_Renderer $renderer, $data) {
167 if($mode == 'xhtml') {
78 connectTo($mode) global() argument
H A Dlist.php17 * @return string Syntax mode type
40 * @param string $mode Parser mode
42 public function connectTo($mode) { argument
43 $this->Lexer->addSpecialPattern('~~TODOLIST[^~]*~~', $mode, 'plugin_todo_list');
163 * @param string $mode Renderer mode (supported modes: xhtml)
168 public function render($mode, Doku_Renderer $renderer, $data) { argument
171 if($mode != 'xhtml') return false;
/plugin/bureaucracy/
H A DLICENSE313 when it starts in an interactive mode:
H A Dsyntax.php62 * @param string $mode
64 public function connectTo($mode) { argument
65 $this->Lexer->addSpecialPattern('<form>.*?</form>', $mode, 'plugin_bureaucracy');
/plugin/tgnotify/
H A DCHANGELOG.rst53 * Feature: Plugin debug mode is added. May be activated at settings page.
/plugin/htmlok/
H A DBaseSyntaxPlugin.php26 protected $mode; variable in dokuwiki\\plugin\\htmlok\\BaseSyntaxPlugin
45 public function connectTo($mode) argument
47 $this->Lexer->addEntryPattern("<{$this->tag}>(?=.*?</{$this->tag}>)", $mode, $this->mode);
52 $this->Lexer->addExitPattern("</{$this->tag}>", $this->mode);
69 public function render($mode, Doku_Renderer $renderer, $data): bool argument
71 if ($mode !== 'xhtml') {
H A DLICENSE313 when it starts in an interactive mode:
/plugin/htmlok/syntax/
H A Dhtmlblock.php17 protected $mode = 'plugin_htmlok_htmlblock'; variable in syntax_plugin_htmlok_htmlblock
H A Dhtmlok.php17 protected $mode = 'plugin_htmlok_htmlok'; variable in syntax_plugin_htmlok_htmlok
H A Dphpblock.php18 protected $mode = 'plugin_htmlok_phpblock'; variable in syntax_plugin_htmlok_phpblock
H A Dphpok.php17 protected $mode = 'plugin_htmlok_phpok'; variable in syntax_plugin_htmlok_phpok
/plugin/addnewpage/
H A Dsyntax.php42 * @param string $mode
44 public function connectTo($mode) { argument
45 $this->Lexer->addSpecialPattern('\{\{NEWPAGE[^\}]*\}\}', $mode, 'plugin_addnewpage');
/plugin/gitbacked/
H A DLICENSE313 when it starts in an interactive mode:
/plugin/dw2pdf/syntax/
H A Dpagesetting.php18 * Needs to return one of the mode types defined in $PARSER_MODES in parser.php
28 * Sort for applying this mode
50 * @param string $mode
52 public function connectTo($mode) argument
54 $this->Lexer->addSpecialPattern('~~PDF:(?:LANDSCAPE|PORTRAIT)~~', $mode, 'plugin_dw2pdf_pagesetting');
74 * @param string $mode output format being rendered
79 public function render($mode, Doku_Renderer $renderer, $data)
81 if ($mode == 'xhtml') {
77 render($mode, Doku_Renderer $renderer, $data) global() argument
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Color/
H A DColorConverter.php229 * @param $mode
233 private function processModeColor($mode, array $cores)
237 $cores = $this->convertPercentCoreValues($mode, $cores);
239 switch ($mode) {
280 * @param string $mode
285 private function convertPercentCoreValues($mode, array $cores)
291 if ($mode === 'rgb' || $mode === 'rgba') {
298 if ($mode === 'rgb' || $mode
217 processModeColor($mode, array $cores) global() argument
269 convertPercentCoreValues($mode, array $cores) global() argument
[all...]
H A DColorSpaceRestrictor.php29 private $mode; variable in Mpdf\\Color\\ColorSpaceRestrictor
32 * Process $mode settings
39 * @param int $mode
41 public function __construct(Mpdf $mpdf, ColorModeConverter $colorModeConverter, $mode) argument
45 $this->mode = $mode;
61 $mode = (int) $c[0];
62 switch ($mode) {
96 if ($this->mode != 3) {
100 } elseif ($this->mode
[all...]

12345678910>>...98