Home
last modified time | relevance | path

Searched refs:mode (Results 201 – 225 of 2447) sorted by relevance

12345678910>>...98

/plugin/inlinejs/syntax/
H A Dpreloader.php42 protected $mode, $pattern;
47 $this->mode = substr(get_class($this), 7);
57 public function connectTo($mode) argument
59 $this->Lexer->addEntryPattern($this->pattern[1], $mode, $this->mode);
64 $this->Lexer->addExitPattern($this->pattern[4], $this->mode);
65 $this->Lexer->addPattern($this->pattern[21], $this->mode);
66 $this->Lexer->addPattern($this->pattern[22], $this->mode);
67 $this->Lexer->addPattern($this->pattern[23], $this->mode);
H A Dembedder.php37 protected $mode, $pattern;
42 $this->mode = substr(get_class($this), 7);
49 public function connectTo($mode) argument
51 $this->Lexer->addEntryPattern($this->pattern[1], $mode, $this->mode);
56 $this->Lexer->addExitPattern($this->pattern[4], $this->mode);
/plugin/box/
H A Dsyntax.php51 public function accepts($mode) argument
53 if ($mode == substr(get_class($this), 7)) {
57 return parent::accepts($mode);
63 public function connectTo($mode) argument
65 $this->Lexer->addEntryPattern('<box>(?=.*?</box.*?>)', $mode, 'plugin_box');
66 $this->Lexer->addEntryPattern('<box\s[^\r\n\|]*?>(?=.*?</box.*?>)', $mode, 'plugin_box');
67 $this->Lexer->addEntryPattern('<box\|(?=[^\r\n]*?\>.*?</box.*?\>)', $mode, 'plugin_box');
68 …$this->Lexer->addEntryPattern('<box\s[^\r\n\|]*?\|(?=[^\r\n]*?>.*?</box.*?>)', $mode, 'plugin_box'…
117 public function render($mode, Doku_Renderer $renderer, $indata) argument
125 if ($mode == 'xhtml') {
/plugin/webcomponent/syntax/
H A Dcollapse.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') {
H A Dnavbar.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/page4release/
H A Dsyntax.php29 function connectTo($mode) { argument
32 $this->Lexer->addSpecialPattern('\{\{for .*?\}\}',$mode,'plugin_page4release');
33 $this->Lexer->addSpecialPattern('\{\{pour .*?\}\}',$mode,'plugin_page4release');
43 function render($mode, &$renderer, $data) { argument
45 if($mode == 'xhtml') {
65 } elseif ($mode == 'metadata' && $ACT != 'preview' && !$REV) {
/plugin/whoisonline/
H A Dsyntax.php93 * @param string $mode Parser mode
95 public function connectTo($mode) { argument
96 …pecialPattern('~~whoisonline[\#\;\:]?(?:NOLIST|NOSHOW|noshow|nolist)?~~',$mode,'plugin_whoisonline…
118 * @param string $mode Renderer mode (supported modes: xhtml)
123 public function render($mode, &$renderer, $data) { argument
124 if($mode != 'xhtml') return false;
/plugin/diagramsnet/
H A Dsyntax.php43 * @param string $mode Parser mode
45 public function connectTo($mode) { argument
46 $this->Lexer->addSpecialPattern($this->fileMatchPattern, $mode, 'plugin_diagramsnet');
67 * @param string $mode Renderer mode (supported modes: xhtml)
73 public function render($mode, Doku_Renderer $renderer, $data) { argument
74 if ($mode !== 'xhtml') {
/plugin/noprint/
H A Dsyntax.php69 function connectTo($mode) { argument
71 $this->Lexer->addSpecialPattern('<noprint>',$mode,'plugin_noprint');
72 $this->Lexer->addSpecialPattern('</noprint>',$mode,'plugin_noprint');
106 function render($mode, Doku_Renderer $renderer, $data) { argument
108 if ($mode == 'xhtml'){
/plugin/tabinclude/syntax/
H A Dlines.php20 function connectTo($mode){ argument
21 $this->Lexer->addSpecialPattern('<tabbed.+?</tabbed>', $mode, 'plugin_tabinclude_lines');
33 function render($mode, Doku_Renderer $renderer, $data) { argument
35 if ($mode=='xhtml'){
38 }else if($mode=='odt'){
/plugin/pagetitle/syntax/
H A Dbreadcrumb.php27 protected $mode, $pattern;
38 $this->mode = substr(get_class($this), 7);
44 public function connectTo($mode) argument
46 $this->Lexer->addSpecialPattern($this->pattern[5], $mode, $this->mode);
H A Dshorter.php27 protected $mode, $pattern;
38 $this->mode = substr(get_class($this), 7);
44 public function connectTo($mode) argument
46 $this->Lexer->addSpecialPattern($this->pattern[5], $mode, $this->mode);
/plugin/displaytitle/
H A Dsyntax.php31 function connectTo($mode) argument
34 $this->Lexer->addSpecialPattern($pattern, $mode, 'plugin_displaytitle');
37 $this->Lexer->addSpecialPattern($pattern, $mode, 'plugin_displaytitle');
53 function render($mode, Doku_Renderer $renderer, $data) argument
55 if ($mode != 'xhtml') { return false; }
/plugin/autolink2/syntax/
H A Dadd.php42 function connectTo($mode) { argument
45 $this->Lexer->addSpecialPattern('\{\{autolink>.*?\}\}',$mode,'plugin_autolink2_add');
67 function render($mode, &$renderer, $data) { argument
71 if ($mode == 'xhtml'){
74 } elseif ($mode == 'metadata'){
/plugin/database2/
H A Dsyntax.php42 * @param string $mode Parser mode
44 public function connectTo($mode) { argument
45 … $this->Lexer->addEntryPattern("<database2.*?>(?=.*?</database2>)", $mode, 'plugin_database2');
113 * @param string $mode Renderer mode (supported modes: xhtml)
118 public function render($mode, Doku_Renderer $renderer, $data) { argument
119 if ($mode == 'xhtml') {
146 elseif ($mode == 'metadata') {
/plugin/javadoc/
H A Dsyntax.php44 function accepts($mode) { argument
45 if ($mode == substr(get_class($this), 7)) {
49 return parent::accepts($mode);
56 function connectTo($mode) { argument
57 $this->Lexer->addEntryPattern('<javadoc\b.*?>(?=.*?</javadoc>)',$mode,'plugin_javadoc');
94 function render($mode, Doku_Renderer $renderer, $indata) { argument
133 if ($mode == 'xhtml'){
/plugin/twcheckliste/
H A Dsyntax.php39 function accepts($mode) { argument
40 if ($mode == substr(get_class($this), 7))
42 return parent::accepts($mode);
45 function connectTo($mode) { argument
46 …$this -> Lexer -> addEntryPattern('<checkliste.*?>(?=.*?</checkliste>)', $mode, 'plugin_twchecklis…
85 function render($mode, &$renderer, $data) { argument
87 if ($mode == 'xhtml') {
/plugin/ghissues/syntax/
H A Dsyntax.php35 * @param string $mode Parser mode
37 public function connectTo($mode) { argument
38 $this->Lexer->addSpecialPattern('\{\{ghissues\b.*?}}',$mode,'plugin_ghissues_syntax');
120 * @param string $mode Renderer mode (supported modes: xhtml)
125 public function render($mode, Doku_Renderer &$renderer, $data) { argument
126 if($mode == 'metadata') {
137 if ($mode != 'xhtml') return false;
/plugin/tagsections/syntax/
H A Dtag.php44 * @param string $mode Parser mode
46 function connectTo($mode) { argument
47 $this->Lexer->addSpecialPattern('\{\{tag>.*?\}\}', $mode, 'plugin_tagsections_tag');
53 * @param string $mode Renderer mode (supported modes: xhtml and metadata)
58 function render($mode, Doku_Renderer $renderer, $data) { argument
63 if ($mode == 'xhtml') {
87 return parent::render($mode, $renderer, $data);
/plugin/nspages/
H A Dsyntax.php36 //Execute before html mode
100 // Don't bother resolving or sanitizing now: it will be done at render-time in this mode
136 function render($mode, Doku_Renderer $renderer, $data) {
148 $printer = $this->_selectPrinter($mode, $renderer, $data);
155 if ($mode === "metadata") {
157 // but anyway in "sidebar" mode we're not really going to generate metadata of the current page
232 private function _selectPrinter($mode, &$renderer, $data){
234 return new nspages_printerSimpleList($this, $mode, $renderer, $data);
236 return new nspages_printerSimpleList($this, $mode, $renderer, $data, true);
238 return new nspages_printerOneLine($this, $mode,
133 render($mode, Doku_Renderer $renderer, $data) global() argument
229 _selectPrinter($mode, & $renderer, $data) global() argument
[all...]
/plugin/socialshareprivacy2/
H A Dsyntax.php25 public function connectTo($mode) { argument
26 …$this->Lexer->addSpecialPattern('\{\{socialshareprivacy2\}\}', $mode, 'plugin_socialshareprivacy2'…
27 …$this->Lexer->addSpecialPattern('\{\{socialshareprivacy2>.+?\}\}', $mode, 'plugin_socialsharepriva…
51 public function render($mode, &$renderer, $data) { argument
52 if($mode != 'xhtml') return false;
/plugin/embedover/
H A Dsyntax.php58 if (preg_match('/{\(url\:((?<mode>.*)!)?(?<text>[^|]*)\)}/', $match, $matches))
65 … else if (preg_match('/{\(style\:((?<mode>.*)!)?(?<text>[^|]*)\)}/', $match, $matches))
71 … else if (preg_match('/{\(((?<mode>.*)!)?(?<text>[^|]*)(\|(?<aff>.*))?\)}/', $match, $matches))
88 function render($mode, Doku_Renderer $renderer, $data) argument
90 if($mode == 'xhtml'){
/plugin/mailto/
H A Dsyntax.php40 function connectTo($mode) { argument
41 $this->Lexer->addSpecialPattern('~~MAILTO:.*~~',$mode,'plugin_mailto');
51 function render($mode, &$renderer, $data) { argument
53 if($mode == 'metadata'){
58 elseif ($mode != 'metadata') {
/plugin/rowmove/
H A Dsyntax.php39 function connectTo($mode) { argument
40 $this->Lexer->addSpecialPattern("<rowmove>",$mode,'plugin_rowmove');
60 function render($mode, Doku_Renderer $renderer, $opt){ argument
63 if($mode == 'metadata') return false;
64 if($mode == 'xhtml') {
/plugin/openas/
H A Dsyntax.php24 function connectTo($mode) { argument
26 $this->Lexer->addEntryPattern('~~OpenAsVarsStart~~', $mode, 'plugin_openas');
27 $this->Lexer->addPattern('~~OpenAsVar>TAreaOpen~~', $mode, 'plugin_openas');
28 $this->Lexer->addPattern('~~OpenAsVar>TAreaClose~~', $mode, 'plugin_openas');
31 $this->Lexer->addSpecialPattern('~~SaveAS>.*?~~',$mode,'plugin_openas');
32 $this->Lexer->addSpecialPattern('~~OpenAS>.*?~~',$mode,'plugin_openas');
33 $this->Lexer->addSpecialPattern('~~MoveTO>.*?~~',$mode,'plugin_openas');
93 function render($mode, Doku_Renderer $renderer, $data) { argument
96 if($mode == 'xhtml'){

12345678910>>...98