Home
last modified time | relevance | path

Searched refs:mode (Results 151 – 175 of 2447) sorted by relevance

12345678910>>...98

/plugin/clearfloat/
H A Dsyntax.php37 function connectTo($mode) { argument
38 $this->Lexer->addSpecialPattern('~~CLEARFLOAT~~',$mode,'plugin_clearfloat');
39 $this->Lexer->addSpecialPattern('~~CL~~',$mode,'plugin_clearfloat');
52 function render($mode, Doku_Renderer $renderer, $data) { argument
53 if($mode == 'xhtml'){
/plugin/bugzillaint/syntax/
H A Dtree.php42 * @param string $mode
44 public function connectTo($mode) { argument
45 $this->Lexer->addSpecialPattern('<[Bb]ugtree\s+[0-9]+[^>]*>', $mode, 'plugin_bugzillaint_tree');
73 * @param string $mode
78 public function render($mode, Doku_Renderer $renderer, $data) { argument
79 if ($mode != 'xhtml') return false;
/plugin/dokupp/
H A Dsyntax.php16 function connectTo($mode) { argument
18 $this->Lexer->addSpecialPattern('@#:%[0-9]*u@', $mode, 'plugin_dokupp');
20 $this->Lexer->addSpecialPattern('@#[a-z]*=\d*@', $mode, 'plugin_dokupp');
22 $this->Lexer->addSpecialPattern('@#@', $mode, 'plugin_dokupp');
40 function render($mode, &$renderer, $data) { argument
47 if ('xhtml' === $mode) {
/plugin/articlelinks/
H A Dsyntax.php35 * @param string $mode Parser mode
37 public function connectTo($mode) { argument
38 …n|relatedarticle|relatedarticles|mainarticle)>.*?</(?:article|section)>',$mode,'plugin_articlelink…
83 * @param string $mode Renderer mode (supported modes: xhtml)
88 public function render($mode, Doku_Renderer $renderer, $data) { argument
89 if($mode != 'xhtml') return false;
/plugin/datepicker/
H A Daction.php50 $mode = $INPUT->str('mode');
55 if($mode !== "datepicker" && $mode !== "weekpicker"){
81 $found=explode('<'.$mode,$range_part);
115 …$range_part=implode('<'.$mode,$found). (isset($range_delemiters[$range_index])?$range_delemiters[$…
126 'mode' => $mode,
129 $summary= $mode.' '.$datecount." changed from ".$olddatestr." to ".$datestr;
131 …$param['msg'] = sprintf($Hajax->getLang('changed_from_to'),hsc($mode),hsc($olddatestr),hsc($datest…
/plugin/glossary/syntax/
H A Dspan.php25 function accepts ($mode) { argument
26 if ($mode == substr (get_class ($this), 7))
28 return parent::accepts ($mode);
31 function connectTo ($mode) { argument
32 $this->Lexer->addSpecialPattern ('<glossary[^/]*?/>', $mode, 'plugin_glossary_span');
33 …$this->Lexer->addEntryPattern ('<glossary[^/]*?>(?=.*?</glossary>)', $mode, 'plugin_glossary_span'…
60 function render ($mode, Doku_Renderer $renderer, $indata) { argument
63 if ($mode != 'xhtml')
/plugin/passwords/
H A Dsyntax.php55 * @param string $mode
57 public function connectTo($mode) { argument
58 $this->Lexer->addSpecialPattern('\{\{ passwords }}', $mode, 'plugin_passwords');
59 $this->Lexer->addSpecialPattern('\{\{ passwords\? }}', $mode, 'plugin_passwords');
60 …$this->Lexer->addSpecialPattern('\{\{ passwords\?amount=\d*&length=\d* }}', $mode, 'plugin_passwor…
61 …$this->Lexer->addSpecialPattern('\{\{ passwords\?length=\d*&amount=\d* }}', $mode, 'plugin_passwor…
62 $this->Lexer->addSpecialPattern('\{\{ passwords\?amount=\d* }}', $mode, 'plugin_passwords');
63 $this->Lexer->addSpecialPattern('\{\{ passwords\?length=\d* }}', $mode, 'plugin_passwords');
/plugin/combo/syntax/
H A Dwebcode.php51 * Needs to return one of the mode types defined in $PARSER_MODES in parser.php
80 public function accepts($mode) argument
83 return syntax_plugin_combo_preformatted::disablePreformatted($mode);
89 * The mode (plugin) with the lowest sort number will win out
109 * @param string $mode
111 * All dokuwiki mode can be seen in the parser.php file
114 public function connectTo($mode) argument
118 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
191 * @param string $mode
200 public function render($mode, Doku_Rendere argument
[all...]
/plugin/outliner/
H A Dsyntax.php28 /* Accept own mode so nesting is allowed */
29 public function accepts($mode)
31 if ($mode == substr(get_class($this), 7)) return true;
32 return parent::accepts($mode);
51 public function connectTo($mode)
55 $mode,
30 accepts($mode) global() argument
49 connectTo($mode) global() argument
97 render($mode, Doku_Renderer $renderer, $data) global() argument
/plugin/toctweak/syntax/
H A Dclosetoc.php14 protected $mode; variable in syntax_plugin_toctweak_closetoc
18 $this->mode = substr(get_class($this), 7); // drop 'syntax_' from class name
32 function connectTo($mode) { argument
33 $this->Lexer->addSpecialPattern($this->pattern[5], $mode, $this->mode);
/plugin/webcomponent/syntax/
H A Dcontainer.php74 * @param string $mode
76 function connectTo($mode) argument
80 …$this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $this…
131 * @param string $mode
136 function render($mode, Doku_Renderer $renderer, $data) argument
139 if ($mode == 'xhtml') {
/plugin/yuml/
H A Dusecase.php51 * @param string $mode Parser mode
54 public function connectTo($mode) argument
56 …$this->Lexer->addSpecialPattern($this->special_pattern, $mode, 'plugin_yuml_' . $this->getPluginCo…
85 * @param string $mode Renderer mode (supported modes: xhtml)
90 public function render($mode, Doku_Renderer $renderer, $data) argument
92 if ($mode != 'xhtml') return false;
/plugin/chem/
H A Dsyntax.php9 …function connectTo($mode) { $this->Lexer->addEntryPattern('<chem>(?=.*?</chem>)',$mode,'plugin_che… argument
21 function render($mode, Doku_Renderer $renderer, $data) { argument
22 if($mode == 'xhtml' || $mode=='odt'){
27 if($mode=='xhtml'){
/plugin/tablelayout/
H A Dsyntax.php47 * @param string $mode Parser mode
49 public function connectTo($mode) argument
51 $this->Lexer->addSpecialPattern(self::SYNTAX_PATTERN, $mode, 'plugin_tablelayout');
109 * @param string $mode Renderer mode (supported modes: xhtml)
115 public function render($mode, Doku_Renderer $renderer, $data) argument
120 if ($mode !== 'xhtml') {
/plugin/variants/
H A Dvariants.php45 * @param string $mode The mode that shall be tested
48 public function accepts($mode) { argument
50 if ($mode == substr(get_class($this), 7)) return true;
51 return parent::accepts($mode);
57 * @param int $mode The current mode
59 public function connectTo($mode) { argument
60 $this->Lexer->addEntryPattern('<ifvar [^=>]+=[^>]+>',$mode,'plugin_variants_variants');
111 * @param string $mode The output mode
116 public function render($mode, Doku_Renderer $renderer, $data) { argument
/plugin/pagebreak/
H A Dsyntax.php39 function connectTo($mode) { argument
40 $this->Lexer->addSpecialPattern('<pagebreak>',$mode,'plugin_pagebreak');
65 function render($mode, Doku_Renderer $renderer, $data) { argument
66 if($mode == 'xhtml'){
73 } else if ($mode == 'odt') {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
H A DArgument.php31 public $mode; variable in Google\\Service\\Bigquery\\Argument
68 public function setMode($mode) argument
70 $this->mode = $mode;
77 return $this->mode;
/plugin/commentsyntax/syntax/
H A Dhtmlcomment.php32 protected $mode, $pattern;
37 $this->mode = substr(__CLASS__, 7);
44 public function connectTo($mode) argument
46 $this->Lexer->addSpecialPattern($this->pattern[5], $mode, $this->mode);
/plugin/discussion/syntax/
H A Dcomments.php42 function connectTo($mode) { argument
43 if ($mode == 'base') {
44 … $this->Lexer->addSpecialPattern('~~DISCUSSION[^\r\n]*?~~', $mode, 'plugin_discussion_comments');
81 function render($mode, Doku_Renderer $renderer, $data) { argument
83 if ($mode == 'metadata') {
/plugin/imagereference/syntax/
H A Dimgcaption.php47 * @param string $mode Parser mode
48 * @return bool true if $mode is accepted
50 public function accepts($mode) { argument
57 if(in_array($mode, $allowedsinglemodes)) return true;
59 return parent::accepts($mode);
65 * @param string $mode Parser mode
67 public function connectTo($mode) { argument
68 $this->Lexer->addEntryPattern('<imgcaption.*?>(?=.*?</imgcaption>)', $mode, 'plugin_imagereference_imgcaptio
127 render($mode, Doku_Renderer $renderer, $indata) global() argument
[all...]
/plugin/bez/syntax/
H A Dstruct.php16 * @return string Syntax mode type
39 * @param string $mode Parser mode
41 public function connectTo($mode) { argument
42 $this->Lexer->addSpecialPattern('----+ *struct bez *-+\n.*?\n----+', $mode, 'plugin_bez_struct');
75 * @param string $mode Renderer mode (supported modes: xhtml)
80 public function render($mode, Doku_Renderer $renderer, $data) { argument
81 if($mode != 'xhtml') return true;
98 $table = new AggregationTable($INFO['id'], $mode,
[all...]
/plugin/wavedrom/
H A Dsyntax.php32 * @param string $mode Parser mode
34 function connectTo($mode) { argument
35 $this->Lexer->addEntryPattern('<wavedrom>(?=.*?</wavedrom>)',$mode,'plugin_wavedrom');
64 function render($mode, Doku_Renderer $renderer, $indata) { argument
65 if($mode == 'xhtml'){
/plugin/blog/syntax/
H A Dblog.php17 function connectTo($mode) { argument
18 $this->Lexer->addSpecialPattern('\{\{blog>.*?\}\}',$mode,'plugin_blog_blog');
48 function render($mode, Doku_Renderer $renderer, $data) { argument
77 if ($mode == 'xhtml') {
83 if ((auth_quickaclcheck($ns.':*') >= AUTH_CREATE) && ($mode == 'xhtml')) {
106 if ($mode == 'xhtml') {
125 if ($mode == 'xhtml' || $mode == 'code') {
134 } elseif ($mode == 'metadata') {
140 if ($mode
[all...]
/plugin/mtg/
H A Dsyntax.php45 * @param string $mode Parser mode
47 public function connectTo($mode) argument
50 $this->Lexer->addSpecialPattern('{{mtg:.*?}}', $mode, 'plugin_mtg');
86 * @param string $mode Renderer mode (supported modes: xhtml)
92 public function render($mode, Doku_Renderer $renderer, $data) argument
94 if ($mode !== 'xhtml') {
/plugin/navpath/
H A Dsyntax.php58 * @param string $mode Parser mode
60 public function connectTo($mode) argument
62 $this->Lexer->addEntryPattern('<navpath.*?>(?=.*?<\/navpath>)', $mode, 'plugin_navpath');
102 * @param string $mode Renderer mode (supported modes: xhtml)
108 public function render($mode, Doku_Renderer $renderer, $indata) argument
110 if ($mode !== 'xhtml') {

12345678910>>...98