Home
last modified time | relevance | path

Searched refs:mode (Results 251 – 275 of 2447) sorted by path

1...<<11121314151617181920>>...98

/plugin/bbcodeextensions/syntax/
H A Dkbd.php13 function connectTo($mode){ argument
14 …$this->Lexer->addEntryPattern($this->makepatterns('kbd')[0], $mode, 'plugin_bbcodeextensions_kbd');
H A Dq.php12 function connectTo($mode){ argument
13 $this->Lexer->addSpecialPattern('\[q.+?\[/q\]', $mode, 'plugin_bbcodeextensions_q');
41 function render($mode, Doku_Renderer $renderer, $data) { argument
49 if(in_array($mode, ['xhtml', 's5'], true)) {
H A Dsamp.php13 function connectTo($mode){ argument
14 …$this->Lexer->addEntryPattern($this->makepatterns('samp')[0], $mode, 'plugin_bbcodeextensions_samp…
/plugin/bbs/
H A Dsyntax.php22 function connectTo($mode) { argument
23 $this->Lexer->addSpecialPattern('<bbs>.*?</bbs>', $mode, 'plugin_bbs');
/plugin/bez/struct/
H A DBezType.php28 * @param string $mode The mode the output is rendered in (eg. XHTML)
29 * @return bool true if $mode could be satisfied
31 public function renderValue($value, \Doku_Renderer $R, $mode) { argument
/plugin/bez/syntax/
H A Dnav.php15 public function connectTo($mode) { argument
16 $this->Lexer->addSpecialPattern('~~BEZNAV~~',$mode,'plugin_bez_nav');
23 public function render($mode, Doku_Renderer $r, $data) { argument
24 if ($mode != 'xhtml') return;
H A Dqlink.php15 function connectTo($mode) { argument
16 $this->Lexer->addSpecialPattern('#(?:z|zk|k)?[0-9]+',$mode,'plugin_bez_qlink');
58 function render($mode, Doku_Renderer $renderer, $data) { argument
59 if ($mode == 'xhtml') {
H A Dquery.php18 public function connectTo($mode) { argument
19 $this->Lexer->addEntryPattern('<bez-query.*?>(?=.*?</bez-query>)',$mode,'plugin_bez_query');
38 public function render($mode, Doku_Renderer $renderer, $data) { argument
40 if($mode == 'xhtml'){
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/bible/
H A Dsyntax.php36 public function connectTo($mode) { argument
53 $this->Lexer->addSpecialPattern($bibleBook . ' \d+:\d+-\d+',$mode,'plugin_bible');
54 $this->Lexer->addSpecialPattern($bibleBook . ' \d+:\d+',$mode,'plugin_bible');
73 public function render($mode, &$renderer, $data) { argument
74 … if($mode != 'xhtml') return false; # If mode is not html, like if it is metadata, just return.
/plugin/bibtex/OSBib/format/
H A DLICENSE221 …gram is interactive, make it output a short notice like this when it starts in an interactive mode:
/plugin/bibtex/OSBib/format/bibtexParse/
H A DLICENSE221 …gram is interactive, make it output a short notice like this when it starts in an interactive mode:
/plugin/bibtex4dw/
H A DLICENSE313 when it starts in an interactive mode:
/plugin/bibtex4dw/syntax/
H A Dbibtex.php8 * Parse <bibtex>...</bibtex> blocks in xhtml mode.bibtex
43 public function connectTo($mode) { argument
44 $this->Lexer->addEntryPattern('<bibtex(?=.*?>.*?</bibtex>)', $mode, 'plugin_bibtex4dw_bibtex');
65 public function render($mode, Doku_Renderer $renderer, $data) { argument
67 if($mode == 'xhtml') {
137 if($mode == 'odt') {
H A Dcite.php43 public function connectTo($mode) { argument
44 $this->Lexer->addSpecialPattern('\{\[.+?\]\}', $mode, 'plugin_bibtex4dw_cite');
53 public function render($mode, Doku_Renderer $renderer, $data) { argument
64 if($mode == 'xhtml') {
86 if($mode == 'latex') {
98 if($mode == 'odt') {
/plugin/bliki/
H A Dsyntax.php378 function render($mode, &$renderer, $data) { argument
389 if ($mode == 'xhtml') {
/plugin/block/
H A Dsyntax.php50 …function connectTo($mode) { $this->Lexer->addEntryPattern('<block.*?>(?=.*?</block>)',$mode,'plugi… argument
145 function render($mode, Doku_Renderer $renderer, $data) { argument
146 if($mode == 'xhtml'){
/plugin/blockquote/
H A DCOPYING314 when it starts in an interactive mode:
/plugin/blockquote/syntax/
H A Dblockquote.php37 function accepts($mode) { argument
38 if ($mode == substr(get_class($this), 7))
40 return parent :: accepts($mode);
43 function connectTo($mode) { argument
44 …$this->Lexer->addEntryPattern('<blockquote.*?>(?=.*?</blockquote>)', $mode, 'plugin_blockquote_blo…
45 … $this->Lexer->addEntryPattern('<QUOTE.*?>(?=.*?</QUOTE>)', $mode, 'plugin_blockquote_blockquote');
78 function render($mode, Doku_Renderer $renderer, $indata) { argument
79 if ($mode == 'xhtml') {
H A Dcite.php34 function accepts($mode) { argument
35 if ($mode == substr(get_class($this), 7))
37 return parent :: accepts($mode);
40 function connectTo($mode) { argument
41 $this->Lexer->addEntryPattern('<cite.*?>(?=.*?</cite>)', $mode, 'plugin_blockquote_cite');
73 function render($mode, Doku_Renderer $renderer, $indata) { argument
74 if ($mode == 'xhtml') {
H A Dq.php34 function accepts($mode) { argument
35 if ($mode == substr(get_class($this), 7))
37 return parent :: accepts($mode);
40 function connectTo($mode) { argument
41 $this->Lexer->addEntryPattern('<q.*?>(?=.*?</q>)', $mode, 'plugin_blockquote_q');
42 $this->Lexer->addEntryPattern('<quote.*?>(?=.*?</quote>)', $mode, 'plugin_blockquote_q');
75 function render($mode, Doku_Renderer $renderer, $indata) { argument
76 if ($mode == 'xhtml') {
/plugin/blog/
H A DCOPYING319 when it starts in an interactive mode:
H A Daction.php45 // determine page id by rewrite mode
228 if (!in_array($cache->mode, array('xhtml', 'metadata'))) return;
/plugin/blog/syntax/
H A Darchive.php19 function connectTo($mode) { argument
20 $this->Lexer->addSpecialPattern('\{\{archive>.*?\}\}', $mode, 'plugin_blog_archive');
92 function render($mode, Doku_Renderer $renderer, $data) { argument
112 if ($mode == 'xhtml') {
143 } elseif ($mode == 'metadata') {
H A Dautoarchive.php19 function connectTo($mode) { argument
20 $this->Lexer->addSpecialPattern('\{\{autoarchive>.*?\}\}', $mode, 'plugin_blog_autoarchive');
39 function render($mode, Doku_Renderer $renderer, $data) { argument
41 if ($mode != 'xhtml') return false;

1...<<11121314151617181920>>...98