Home
last modified time | relevance | path

Searched refs:mode (Results 76 – 100 of 2447) sorted by relevance

12345678910>>...98

/plugin/commentsyntax/syntax/
H A Dpreventive.php30 protected $mode, $pattern;
35 $this->mode = substr(__CLASS__, 7);
42 public function connectTo($mode) argument
44 $this->Lexer->addSpecialPattern($this->pattern[5], $mode, $this->mode);
56 error_log($this->mode.': match='.$match.' |'.$ID);
/plugin/include/syntax/
H A Dinclude.php50 * @param $mode mixed The current mode
52 function connectTo($mode) { argument
53 $this->Lexer->addSpecialPattern("{{page>.+?}}", $mode, 'plugin_include_include');
54 $this->Lexer->addSpecialPattern("{{section>.+?}}", $mode, 'plugin_include_include');
55 $this->Lexer->addSpecialPattern("{{namespace>.+?}}", $mode, 'plugin_include_include');
56 $this->Lexer->addSpecialPattern("{{tagtopic>.+?}}", $mode, 'plugin_include_include');
74 list($mode, $page, $sect) = array_pad(preg_split('/>|#/u', $match, 3), 3, null);
78 return array($mode, $page, $sect, explode('&', $flags), $level, $pos);
98 list($mode,
[all...]
/plugin/slidesharewp/syntax/
H A Dslidesharewp.php35 * @param string $mode Parser mode
37 public function connectTo($mode) { argument
38 …$this->Lexer->addSpecialPattern('\[slideshare id=.+?&doc=.+?\]',$mode,'plugin_slidesharewp_slidesh…
64 * @param string $mode Renderer mode (supported modes: xhtml)
69 public function render($mode, Doku_Renderer &$renderer, $data) { argument
70 if($mode != 'xhtml') return false;
/plugin/pageimage/
H A Dsyntax.php27 function connectTo($mode) { argument
28 $this->Lexer->addSpecialPattern('~~PAGEIMAGE:.*?~~', $mode, 'plugin_pageimage');
41 * @param string $mode Renderer mode (supported modes: xhtml and metadata)
46 function render($mode, Doku_Renderer $renderer, $data) { argument
50 if ($mode == 'xhtml') {
54 } elseif ($mode == 'metadata') {
/plugin/linkpagechild/
H A Dsyntax.php43 * @param string $mode Parser mode
45 public function connectTo($mode) argument
48 $this->Lexer->addSpecialPattern('\[\[ ?::[^\]]+\]\]', $mode, 'plugin_linkpagechild');
49 $this->Lexer->addSpecialPattern('\{\{ ?::[^\}]+\}\}', $mode, 'plugin_linkpagechild');
82 * @param string $mode Renderer mode (supported modes: xhtml)
88 public function render($mode, Doku_Renderer $renderer, $data) argument
/plugin/pdftools/
H A Dsyntax.php59 function connectTo($mode) { argument
60 $this->Lexer->addEntryPattern('<pdf (?=.*?>)',$mode,'plugin_pdftools');
61 $this->Lexer->addSpecialPattern('<etikett>',$mode,'plugin_pdftools');
62 $this->Lexer->addSpecialPattern('<abstand1>',$mode,'plugin_pdftools');
63 $this->Lexer->addSpecialPattern('<abstand2>',$mode,'plugin_pdftools');
64 $this->Lexer->addSpecialPattern('<abstand3>',$mode,'plugin_pdftools');
65 $this->Lexer->addSpecialPattern('<quer1>',$mode,'plugin_pdftools');
66 $this->Lexer->addSpecialPattern('<quer2>',$mode,'plugin_pdftools');
67 $this->Lexer->addSpecialPattern('<quer3>',$mode,'plugin_pdftools');
/plugin/autotweet/syntax/
H A Dautotweet.php45 * @param mode Rendering mode.
47 public function connectTo($mode) { argument
48 $this->Lexer->addSpecialPattern('~~AUTOTWEET:.*?~~', $mode, 'plugin_autotweet_autotweet');
95 * @param mode rendering mode.
100 public function render($mode, &$renderer, $data) { argument
107 if ( $mode == 'metadata') {
114 else if ( $mode == 'xhtml')
/plugin/headernofloat/
H A Dsyntax.php27 function accepts($mode) { return false; } argument
29 function connectTo( $mode ) { argument
30 …$this->Lexer->addSpecialPattern( '^[ \t]*#{2,6}[^\n]+#{2,6}[ \t]*(?=\n)', $mode, 'plugin_headernof…
59 function render( $mode, &$renderer, $data ) argument
65 if($mode == 'metadata')return false;
68 if($mode=="xhtml") {
72 } else if($mode=='odt'){
/plugin/codebender/syntax/
H A Dsyntax.php38 * @param string $mode Parser mode
40 public function connectTo($mode) { argument
41 …$this->Lexer->addEntryPattern('<codebender>(?=.*?</codebender.*?>)',$mode,'plugin_codebender_synta…
68 * @param string $mode Renderer mode (supported modes: xhtml)
73 public function render($mode, Doku_Renderer &$renderer, $data) { argument
74 if($mode == 'xhtml') {
/plugin/sitemapnavi/
H A Dsyntax.php43 * @param string $mode Parser mode
45 public function connectTo($mode) argument
47 $this->Lexer->addSpecialPattern('{{sitemapnavi}}', $mode, 'plugin_sitemapnavi');
69 * @param string $mode Renderer mode (supported modes: xhtml)
74 public function render($mode, Doku_Renderer $renderer, $data) argument
76 if ($mode !== 'xhtml') {
/plugin/htmldetailstag/syntax/
H A Dsummary.php51 * @param string $mode Parser mode
53 public function connectTo($mode) argument
55 …$this->Lexer->addEntryPattern('<summary>(?=.*?</summary>)', $mode, 'plugin_htmldetailstag_summary'…
82 * @param string $mode Renderer mode (supported modes: xhtml)
88 public function render($mode, Doku_Renderer $renderer, $data) argument
90 if ($mode !== 'xhtml') {
/plugin/dirtylittlehelper/syntax/
H A Dcomment.php45 * @param string $mode Parser mode
47 public function connectTo($mode) argument
49 …$this->Lexer->addEntryPattern('\<dlh\.\*\>',$mode,'plugin_dirtylittlehelper_'.$this->getPluginComp…
95 * @param string $mode Renderer mode (supported modes: xhtml)
101 public function render($mode, Doku_Renderer $renderer, $data) argument
103 if ($mode == 'xhtml') {
/plugin/today/
H A Dsyntax.php42 * @param string $mode Parser mode
44 public function connectTo($mode): void argument
46 $this->Lexer->addSpecialPattern('\{today.*?\}', $mode, 'plugin_today');
72 * @param string $mode Renderer mode (supported modes: xhtml)
78 public function render($mode, Doku_Renderer $renderer, $data): bool argument
80 if ($mode !== 'xhtml') {
/plugin/structat/syntax/
H A Dtable.php52 * @param string $mode Parser mode
54 public function connectTo($mode) argument
56 …$this->Lexer->addSpecialPattern('----+ *structat table *-+\n.*?\n----+', $mode, 'plugin_structat_t…
93 * @param string $mode Renderer mode (supported modes: xhtml)
98 public function render($mode, Doku_Renderer $renderer, $data) argument
106 if ($mode == 'struct_csv') {
113 $table = new $this->tableclass($INFO['id'], $mode, $renderer, $search);
116 if ($mode == 'metadata') {
/plugin/flowcharts/
H A Dsyntax.php31 * @param string $mode Parser mode
33 function connectTo($mode) { argument
34 $this->Lexer->addEntryPattern('<flow>(?=.*?</flow>)',$mode,'plugin_flowcharts');
63 function render($mode, Doku_Renderer $renderer, $indata) { argument
64 if($mode == 'xhtml'){
124 foreach($modes as $mode){
125 $Parser->addMode($mode['mode'],$mode['obj']);
/plugin/mermaid/
H A Dsyntax.php48 * @param string $mode Parser mode
50 function connectTo($mode)
52 $this->Lexer->addEntryPattern('<mermaid.*?>(?=.*?</mermaid>)',$mode,'plugin_mermaid');
79 function render($mode, Doku_Renderer $renderer, $indata)
81 if($mode == 'xhtml'){
122 //import parser classes and mode definitions
141 'mode' => $m,
153 'mode' => $m,
159 foreach($modes as $mode)
30 connectTo($mode) global() argument
59 render($mode, Doku_Renderer $renderer, $indata) global() argument
[all...]
/plugin/struct/syntax/
H A Dlist.php26 * @param string $mode Parser mode
28 public function connectTo($mode)
30 $this->Lexer->addSpecialPattern('----+ *struct list *-+\n.*?\n----+', $mode, 'plugin_struct_list');
49 connectTo($mode) global() argument
104 render($mode, Doku_Renderer $renderer, $data) global() argument
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TrafficDirectorService/
H A DPipe.php25 public $mode; variable in Google\\Service\\TrafficDirectorService\\Pipe
34 public function setMode($mode) argument
36 $this->mode = $mode;
43 return $this->mode;
/plugin/mark2memorize/
H A Dsyntax.php45 * @param string $mode Parser mode
47 public function connectTo($mode) argument
49 $this->Lexer->addEntryPattern('<markmemo.*?>(?=.*?</markmemo>)', $mode, 'plugin_mark2memorize');
80 * @param string $mode Renderer mode (supported modes: xhtml)
86 public function render($mode, Doku_Renderer $renderer, $data) argument
88 if ($mode == 'xhtml') {
/plugin/clippy/
H A Dsyntax.php44 * @param string $mode Parser mode
46 public function connectTo( $mode ) { argument
47 $this->Lexer->addSpecialPattern( '<clippy>.*?</clippy>', $mode, 'plugin_clippy' );
110 * @param string $mode Renderer mode (supported modes: xhtml)
115 public function render( $mode, Doku_Renderer $renderer, $data ) { argument
116 if ( $mode != 'xhtml' ) return false;
/plugin/noabstract/
H A Dsyntax.php15 public function connectTo($mode) { argument
16 $this->Lexer->addEntryPattern('<noabstract>(?=.*?</noabstract>)',$mode,'plugin_noabstract');
17 $this->Lexer->addSpecialPattern('~~NOABSTRACT~~', $mode, 'plugin_noabstract');
27 public function render($mode, Doku_Renderer $renderer, $data) { argument
29 if($mode == 'xhtml'){
36 } else if($mode == 'metadata'){
/plugin/sequencediagram/
H A Dsyntax.php34 * @param string $mode Parser mode
36 public function connectTo($mode) { argument
37 …$this->Lexer->addSpecialPattern('<sequencediagram>.*?</sequencediagram>',$mode,'plugin_sequencedia…
66 * @param string $mode Renderer mode (supported modes: xhtml)
71 public function render($mode, Doku_Renderer $renderer, $data) { argument
72 if($mode == 'xhtml'){
/plugin/indexeverywhere/
H A DshowTheTree.php35 * @param string $mode Parser mode
37 public function connectTo($mode) { argument
38 … $this->Lexer->addSpecialPattern('~~INDEXEVERYWHERE~~',$mode,'plugin_indexeverywhere_showTheTree');
58 * @param string $mode Renderer mode (supported modes: xhtml)
63 public function render($mode, Doku_Renderer &$renderer, $data) { argument
64 if($mode != 'xhtml') return false;
/plugin/sapnotelink/
H A Dsyntax.php27 public function connectTo($mode) { argument
28 $this->Lexer->addSpecialPattern('SAP#[0-9]{1,10}',$mode,'plugin_sapnotelink');
29 $this->Lexer->addSpecialPattern('sap#[0-9]{1,10}',$mode,'plugin_sapnotelink');
38 public function render($mode, Doku_Renderer $renderer, $data) { argument
40 if($mode == 'xhtml'){
47 elseif ($mode == 'odt'){
/plugin/code39/
H A Dsyntax.php47 * @param string $mode Parser mode
49 public function connectTo($mode) argument
51 $this->Lexer->addEntryPattern('<code39.*?>(?=.*?</code39>)', $mode, 'plugin_code39');
82 * @param string $mode Renderer mode (supported modes: xhtml)
88 public function render($mode, Doku_Renderer $renderer, $data) argument
91 if ($mode == 'xhtml') {

12345678910>>...98