Home
last modified time | relevance | path

Searched refs:mode (Results 326 – 350 of 2447) sorted by relevance

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

/plugin/encryptedpasswords/
H A Dsyntax.php25 public function connectTo($mode)
27 $this->Lexer->addSpecialPattern('<decrypt>(?:.*?<\/decrypt>)', $mode, 'plugin_encryptedpasswords');
38 public function render($mode, Doku_Renderer $renderer, $data)
40 if ($mode !== 'xhtml') {
23 connectTo($mode) global() argument
36 render($mode, Doku_Renderer $renderer, $data) global() argument
/plugin/issuelinks/
H A Dsyntax.php36 * @param string $mode Parser mode
38 public function connectTo($mode) argument
44 $this->Lexer->addSpecialPattern("\[\[$pattern>.*?\]\]", $mode, 'plugin_issuelinks');
113 * @param string $mode Renderer mode (supported modes: xhtml)
119 public function render($mode, Doku_Renderer $renderer, $data) argument
121 if ($mode !== 'xhtml' || count($data) === 2) {
/plugin/imagecarousel/
H A Dsyntax.php39 * @param string $mode Parser mode
41 public function connectTo($mode) { argument
43 $this->Lexer->addEntryPattern('<carousel.*?>',$mode,'plugin_imagecarousel');
101 * @param string $mode Renderer mode (supported modes: xhtml)
106 public function render($mode, Doku_Renderer $renderer, $data) { argument
107 if($mode != 'xhtml') return false;
/plugin/dwtimeline/syntax/
H A Dtimeline.php21 * @param string $mode
23 public function connectTo($mode) argument
25 …$this->Lexer->addEntryPattern('<dwtimeline\b.*?>(?=.*?</dwtimeline\b.*?>)',$mode,'plugin_dwtimelin…
66 * @param string $mode string output format being rendered
71 public function render($mode, Doku_Renderer $renderer, $data) argument
73 if ($mode == 'xhtml') {
/plugin/combo/syntax/
H A Dnavbargroup.php35 * Needs to return one of the mode types defined in $PARSER_MODES in parser.php
67 public function accepts($mode): bool argument
69 return syntax_plugin_combo_preformatted::disablePreformatted($mode);
75 * the mode with the lowest sort number will win out
86 * @param string $mode
89 function connectTo($mode) argument
100 if (in_array($mode, $authorizedMode)) {
103 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
H A Daccordion.php41 * Needs to return one of the mode types defined in $PARSER_MODES in parser.php
54 * 'baseonly' will run only in the base mode
57 * Return an array of one or more of the mode types {@link $PARSER_MODES} in Parser.php
64 public function accepts($mode): bool argument
67 * header mode is disable to take over
70 if ($mode == "header") {
76 return syntax_plugin_combo_preformatted::disablePreformatted($mode);
97 * because the mode with the lowest sort number will win out
107 * @param string $mode
110 function connectTo($mode) argument
[all...]
/plugin/structstatus/
H A Dsyntax.php37 * @param string $mode Parser mode
39 public function connectTo($mode) { argument
40 $this->Lexer->addSpecialPattern('{{struct-status>.*?}}', $mode, 'plugin_structstatus');
61 * @param string $mode Renderer mode (supported modes: xhtml)
66 public function render($mode, Doku_Renderer $renderer, $data) { argument
67 if($mode != 'xhtml') return false;
/plugin/heat/
H A Dsyntax.php116 $this->Lexer->addSpecialPattern('Heat #',$mode,'plugin_heat');
117 $this->Lexer->addSpecialPattern('heat #',$mode,'plugin_heat');
190 function render($mode, &$renderer, $data) { argument
191 if($mode == 'xhtml'){
/plugin/freechat/phpfreechat/style/
H A Dshow.js10 function openClose(id,mode) argument
16 if(mode == 0) {
24 } else if(mode == 1) {
27 } else if(mode == -1) {
/plugin/floatdiv/syntax/
H A Dfloathead.php32 public function connectTo($mode) { argument
33 $this->Lexer->addSpecialPattern('~\$+ .+? \$+~',$mode,'plugin_floatdiv_floathead');
46 public function render($mode, &$renderer, $data) { argument
47 if($mode != 'xhtml') return false;
/plugin/mediasyntax/syntax/
H A Dinclude.php28 function connectTo($mode)
30 $this->Lexer->addSpecialPattern("{[.+?]}", $mode, 'plugin_mediasyntax_include');
40 $mode = "page";
41 return array($mode, $page, cleanID($sect), explode('&', $flags));
31 connectTo($mode) global() argument
/plugin/workflow/syntax/
H A Dbox.php19 public function connectTo($mode) { argument
20 $this->Lexer->addEntryPattern('<box.*?>(?=.*?</box>)', $mode, 'plugin_workflow_box');
32 public function render($mode, &$renderer, $indata) { argument
33 if($mode != 'xhtml') return false;
/plugin/hiddenswitch/
H A Dsyntax.php20 function connectTo($mode) { argument
21 $this->Lexer->addSpecialPattern('<hiddenSwitch[^>]*>', $mode,'plugin_hiddenSwitch');
34 function render($mode, Doku_Renderer $renderer, $data) { argument
35 if($mode == 'xhtml'){
/plugin/fkstimer/
H A Dsyntax.php21 public function connectTo($mode) { argument
22 $this->Lexer->addSpecialPattern('{{timer>.+?}}', $mode, 'plugin_fkstimer');
37 public function render($mode, Doku_Renderer $renderer, $data) { argument
39 if ($mode == 'xhtml') {
/plugin/latexcaption/syntax/
H A Dcaption.php51 public function connectTo($mode) { argument
52 … $this->Lexer->addSpecialPattern('{{setcounter>[a-z0-9=]+?}}',$mode,'plugin_latexcaption_caption');
53 … $this->Lexer->addEntryPattern('<figure.*?>(?=.*</figure>)',$mode,'plugin_latexcaption_caption');
54 … $this->Lexer->addEntryPattern('<table.*?>(?=.*</table>)',$mode,'plugin_latexcaption_caption');
55 …$this->Lexer->addEntryPattern('<codeblock.*?>(?=.*</codeblock>)',$mode,'plugin_latexcaption_captio…
200 public function render($mode, Doku_Renderer $renderer, $data) { argument
210 if (!in_array($mode, ['metadata', 'xhtml','odt', 'latex'])) {
216 if ($mode == 'metadata') {
224 elseif ($mode == 'xhtml') {
294 elseif ($mode == 'latex') {
[all …]
/plugin/qrcode2/
H A Dsyntax.php47 function connectTo($mode) { argument
48 $this->Lexer->addSpecialPattern('\{\{QRCODE>[^}]*\}\}',$mode,'plugin_qrcode2');
63 public function render($mode, Doku_Renderer $renderer, $data) { argument
67 if($mode == 'xhtml'){
/plugin/description/
H A Dsyntax.php24 function connectTo($mode) { argument
25 $this->Lexer->addSpecialPattern('\{\{description>.+?\}\}', $mode, 'plugin_description');
35 function render($mode, Doku_Renderer $renderer, $data) { argument
41 if ($mode == 'metadata') {
/plugin/note/
H A Dsyntax.php71 function accepts($mode)
73 if ($mode == substr(get_class($this), 7)) {
76 return parent::accepts($mode);
79 function connectTo($mode)
81 $this->Lexer->addEntryPattern('<note.*?>(?=.*?</note>)', $mode, 'plugin_note');
136 // unsupported $mode
67 accepts($mode) global() argument
74 connectTo($mode) global() argument
101 render($mode, Doku_Renderer $renderer, $indata) global() argument
/plugin/changemarks/
H A Dhighlighted.php27 function connectTo($mode) { argument
28 $this->Lexer->addEntryPattern('\!\![^\r\n]*?>(?=.*?\!\!)', $mode, $this->ins);
64 function render($mode, Doku_Renderer $renderer, $data) { argument
66 if (($mode == 'xhtml') && (is_array($data))) {
82 if ($mode == 'odt') {
/plugin/webcomponent/syntax/
H A Dmath.php66 * @param string $mode
68 public function connectTo($mode) argument
75 …$this->Lexer->addEntryPattern($pattern, $mode, 'plugin_' . webcomponent::PLUGIN_NAME . '_' . $this…
121 public function render($mode, Doku_Renderer $renderer, $data) argument
125 switch ($mode) {
/plugin/dokutexit/
H A Dsyntax.php61 function connectTo($mode) { argument
62 $this->Lexer->addEntryPattern('<texit(?=.*\x3C/texit\x3E)', $mode,
92 function render($mode, &$renderer, $data) { argument
101 if($mode == 'xhtml'){
124 if($mode == 'latex'){
/plugin/phosphor/
H A Dphitem.php38 function connectTo($mode) { argument
39 $this->Lexer->addEntryPattern('<item>(?=.*?</item>)',$mode,'plugin_phosphor_phitem');
40 $this->Lexer->addEntryPattern('<item .+?>(?=.*?</item>)',$mode,'plugin_phosphor_phitem');
84 function render($mode, Doku_Renderer $renderer, $input) { argument
86 if($mode == 'xhtml'){
/plugin/findologicxmlexport/vendor/hoa/protocol/Test/Unit/
H A DWrapper.php292 $_mode = $mode;
297 $mode = 0755,
306 ->integer($mode)
315 $mode = 0,
330 $_mode = $mode;
337 $mode = 'r',
346 ->string($mode)
363 $mode = 'r',
387 $mode = 'r',
396 ->string($mode)
[all …]
/plugin/revealjs/syntax/
H A Dfooter.php26 public function connectTo($mode) { argument
27 $this->Lexer->addSpecialPattern('{{no-footer}}', $mode, 'plugin_revealjs_footer');
62 public function render($mode, Doku_Renderer $renderer, $data) { argument
63 if($mode == 'xhtml'){
/plugin/shorturl/
H A Dsyntax.php35 function connectTo($mode) { argument
36 $this->Lexer->addSpecialPattern('\~\~SHORTURL\~\~',$mode,'plugin_shorturl');
45 function render($mode, &$renderer, $data) { argument
48 if($mode != 'xhtml') return false;

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