Home
last modified time | relevance | path

Searched refs:mode (Results 301 – 325 of 2447) sorted by last modified time

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

/plugin/combo/syntax/
H A Dcontentlistitem.php28 * Needs to return one of the mode types defined in $PARSER_MODES in parser.php
55 public function accepts($mode) argument
57 return syntax_plugin_combo_preformatted::disablePreformatted($mode);
68 * Return an array of one or more of the mode types {@link $PARSER_MODES} in Parser.php
77 * the mode with the lowest sort number will win out
87 function connectTo($mode) argument
96 $this->Lexer->addEntryPattern($pattern, $mode, PluginUtility::getModeFromTag($this->getPluginComponent()));
196 // unsupported $mode
/plugin/codify/
H A Dsyntax.php15 public function connectTo($mode) { argument
16 $this->Lexer->addEntryPattern('<codify.*?>(?=.*?</codify>)', $mode, 'plugin_codify');
33 public function render($mode, Doku_Renderer $renderer, $data) { argument
34 if ($mode != 'xhtml') return false;
/plugin/structodt/meta/
H A DAggregationEditorTableOdt.php30 * @param string $mode
34 public function __construct($id, $mode, \Doku_Renderer $renderer, SearchConfig $searchConfig) { argument
35 parent::__construct($id, $mode, $renderer, $searchConfig);
45 * Adds additional info to document and renderer in XHTML mode
56 if ($this->mode != 'xhtml') return;
91 if($this->mode != 'xhtml') return;
H A DAggregationTableOdt.php27 * @param string $mode
31 public function __construct($id, $mode, \Doku_Renderer $renderer, SearchConfig $searchConfig) { argument
32 parent::__construct($id, $mode, $renderer, $searchConfig);
40 * Adds additional info to document and renderer in XHTML mode
49 if ($this->mode != 'xhtml') return;
68 if($this->mode != 'xhtml') return;
/plugin/structodt/syntax/
H A Dglobal.php23 * @param string $mode Parser mode
25 public function connectTo($mode) argument
27 $this->Lexer->addSpecialPattern('----+ *struct odt global *-+\n.*?\n----+', $mode, 'plugin_structodt_global');
H A Dserial.php23 * @param string $mode Parser mode
25 public function connectTo($mode) argument
27 $this->Lexer->addSpecialPattern('----+ *struct odt serial *-+\n.*?\n----+', $mode, 'plugin_structodt_serial');
H A Dtable.php22 * @param string $mode Parser mode
24 public function connectTo($mode) { argument
25 $this->Lexer->addSpecialPattern('----+ *struct odt *-+\n.*?\n----+', $mode, 'plugin_structodt_table');
26 $this->Lexer->addSpecialPattern('----+ *struct odt table *-+\n.*?\n----+', $mode, 'plugin_structodt_table');
/plugin/structodt/
H A Dhelper.php293 //import parser classes and mode definitions
307 'mode' => $m,
313 foreach($modes as $mode){
314 $Parser->addMode($mode['mode'],$mode['obj']);
/plugin/data/syntax/
H A Dcloud.php58 * @param $mode
60 public function connectTo($mode)
64 $mode,
55 connectTo($mode) global() argument
H A Dentry.php62 public function connectTo($mode)
66 $mode,
52 connectTo($mode) global() argument
H A Dlist.php18 public function connectTo($mode)
20 $this->Lexer->addSpecialPattern('----+ *datalist(?: [ a-zA-Z0-9_]*)?-+\n.*?\n----+', $mode, 'plugin_data_list');
17 connectTo($mode) global() argument
H A Drelated.php18 public function connectTo($mode)
22 $mode,
17 connectTo($mode) global() argument
H A Dtaglist.php19 public function connectTo($mode)
23 $mode,
18 connectTo($mode) global() argument
H A Dtable.php59 public function connectTo($mode)
63 $mode,
53 connectTo($mode) global() argument
/plugin/data/
H A Dstyle.css1 /* default style for the entry mode */
81 /* default styles for the related mode */
/plugin/adhoctags/syntax/
H A Dabstract.php36 function accepts($mode) { argument
37 if ($mode == substr(get_class($this), 7)) {
40 return parent::accepts($mode);
52 function connectTo($mode) { argument
57 if ($mode == 'plugin_adhoctags_pre')
61 $this->Lexer->addSpecialPattern(str_replace('%t%', $this->tag, $this->special_pattern),$mode,'plugin_' . $this->pluginName.'_'.$this->getPluginComponent());
64 $this->Lexer->addEntryPattern(str_replace('%t%', $this->tag, $this->entry_pattern),$mode,'plugin_' . $this->pluginName.'_'.$this->getPluginComponent());
/plugin/adhoctags/
H A DLICENSE313 when it starts in an interactive mode:
H A DREADME.md102 - Search for `<html>`in default mode, replace with an empty string.
103 - Search for `</html>`in default mode, replace with an empty string.
107 - search for ` title="` (note the space in front!) in standard mode, replace with ` "` (space + quotation mark)
111 - Search for ` lang="([^\"]*)"` in *regex mode* (!), replace with ` :$1` (note: spaces in front of each!)
115 - Search for ` class="([^\"]*)"` in *regex mode* (!), replace with ` $1` (note the spaces again!)
H A Dhelper.php29 'mode (optional)' => 'string'
39 function buildAttributes($data, $myObj, $addClass='', $mode='xhtml') { argument
46 if ($mode=='xhtml') {
/plugin/subpages/
H A Dsyntax.php60 function connectTo($mode) { argument
61 $this->Lexer->addSpecialPattern('~~SUBPAGES~~', $mode, 'plugin_subpages');
74 function render($mode, Doku_Renderer $renderer, $data) { argument
76 $this->rdrMode = $mode;
/plugin/lastpages/
H A Dsyntax.php53 function connectTo($mode) { argument
54 $this->Lexer->addSpecialPattern('~~LASTPAGES~~', $mode, 'plugin_lastpages');
55 $this->Lexer->addSpecialPattern('~~LAST10~~', $mode, 'plugin_lastpages');
56 $this->Lexer->addSpecialPattern('~~LAST5~~', $mode, 'plugin_lastpages');
57 $this->Lexer->addSpecialPattern('~~LIST10~~', $mode, 'plugin_lastpages');
58 $this->Lexer->addSpecialPattern('~~LIST5~~', $mode, 'plugin_lastpages');
71 function render($mode, Doku_Renderer $renderer, $data) { argument
/plugin/dwtimeline/
H A DLICENSE313 when it starts in an interactive mode:
/plugin/dwtimeline/syntax/
H A Dmilestone.php17 function accepts($mode) { argument
18 if ($mode == "plugin_dwtimeline_timeline") return true;
19 return parent::accepts($mode);
31 * @param string $mode
33 public function connectTo($mode) argument
35 …$this->Lexer->addEntryPattern('<milestone\b.*?>(?=.*?</milestone>)',$mode,'plugin_dwtimeline_miles…
73 * @param string $mode string output format being rendered
78 public function render($mode, Doku_Renderer $renderer, $data) argument
80 if ($mode == 'xhtml') {
H A Ddwtimeline.php73 * @param string $mode string output format being rendered
78 public function render($mode, Doku_Renderer $renderer, $data) argument
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') {

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