Home
last modified time | relevance | path

Searched refs:mode (Results 1 – 25 of 2447) sorted by last modified time

12345678910>>...98

/plugin/pagelist/
H A Dsyntax.php31 * @param string $mode
33 public function connectTo($mode) argument
35 $this->Lexer->addSpecialPattern('<pagelist.+?</pagelist>', $mode, 'plugin_pagelist');
H A DCOPYING319 when it starts in an interactive mode:
/plugin/pagequery/
H A Daction.php36 if ($cache->mode !== "xhtml") {
H A Dsyntax.php32 public function connectTo($mode): void
35 $this->Lexer->addSpecialPattern('\{\{pagequery>(?m).*?(?-m)\}\}', $mode, 'plugin_pagequery');
31 connectTo($mode) global() argument
/plugin/twofactoremail/
H A DLICENSE313 when it starts in an interactive mode:
/plugin/twofactor/
H A DLICENSE313 when it starts in an interactive mode:
/plugin/attribute/
H A DLICENSE313 when it starts in an interactive mode:
/plugin/nspages/printers/
H A DprinterNice.php18 function __construct($plugin, $mode, $renderer, $nbCols, $anchorName, $data){
19 parent::__construct($plugin, $mode, $renderer, $data);
20 if ( $this->mode !== 'xhtml' ){
21 throw Exception('nspages_printerNice can only work in xhtml mode');
16 __construct($plugin, $mode, $renderer, $nbCols, $anchorName, $data) global() argument
H A DprinterOneLine.php12 function __construct($plugin, $mode, $renderer, $data){ argument
13 parent::__construct($plugin, $mode, $renderer, $data);
H A DprinterSimpleList.php14 function __construct($plugin, $mode, $renderer, $data, $useNumberedList = false){ argument
15 parent::__construct($plugin, $mode, $renderer, $data);
H A Dprinter.php14 protected $mode; variable in nspages_printer
27 function __construct($plugin, $mode, $renderer, $data){ argument
30 $this->mode = $mode;
39 $this->includeItemsInTOC = $data['includeItemsInTOC'] && $mode === 'xhtml';
77 } else if($this->mode == 'xhtml') {
163 if($this->mode == 'xhtml') {
170 if($this->mode == 'xhtml') {
H A DprinterLineBreak.php10 function __construct($plugin, $mode, $renderer, $data){ argument
11 parent::__construct($plugin, $mode, $renderer, $data);
H A DprinterPictures.php15 function __construct($plugin, $mode, $renderer, $data){
16 parent::__construct($plugin, $mode, $renderer, $data);
26 // TODO: implement support for non-HTML mode
28 // because non xhtml mode (eg: "metadata" mode) isn't plugged on this xhtml specific code
14 __construct($plugin, $mode, $renderer, $data) global() argument
H A DprinterTree.php14 function __construct($plugin, $mode, $renderer, $data){ argument
15 parent::__construct($plugin, $mode, $renderer, $data);
/plugin/nspages/
H A Dstyle.css36 /* below: all the styles for the usePictures mode */
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...]
H A DLICENSE313 when it starts in an interactive mode:
/plugin/dbquery/
H A DLICENSE313 when it starts in an interactive mode:
/plugin/dbquery/syntax/
H A Dmacro.php30 public function connectTo($mode) argument
32 $this->Lexer->addSpecialPattern('~~DBQUERY:.*?~~', $mode, 'plugin_dbquery_macro');
43 public function render($mode, Doku_Renderer $renderer, $data) argument
H A Dquery.php30 public function connectTo($mode) argument
32 $this->Lexer->addSpecialPattern('{{QUERY:\w+}}', $mode, 'plugin_dbquery_query');
42 public function render($mode, Doku_Renderer $renderer, $data) argument
44 if ($mode !== 'xhtml') {
/plugin/siteexport/
H A DLICENSE313 when it starts in an interactive mode:
/plugin/siteexport/inc/
H A Dmpdf.php49 $mode = '+aCJK';
52 $mode = 'UTF-8-s';
57 parent::__construct($mode, $format);
/plugin/siteexport/syntax/
H A Daggregate.php26 public function connectTo($mode) { argument
28 …$this->Lexer->addSpecialPattern('\{\{siteexportAGGREGATOR .*?\}\}', $mode, 'plugin_siteexport_aggr…
46 public function render($mode, Doku_Renderer $renderer, $data) { argument
71 if ($mode == 'xhtml'){
143 } else if ($mode == 'metadata') {
H A Dsiteexport.php26 public function connectTo($mode) { argument
27 … $this->Lexer->addSpecialPattern('\{\{siteexport .*?\}\}', $mode, 'plugin_siteexport_siteexport');
36 public function render($mode, Doku_Renderer $renderer, $data) { argument
42 if ($mode == 'xhtml'){
78 } else if ($mode == 'metadata') {
H A Dtoc.php35 public function connectTo($mode) { argument
36 $this->Lexer->addEntryPattern('<toc>(?=.*?</toc>)', $mode, 'plugin_siteexport_toc');
37 $this->Lexer->addEntryPattern('<toc .+?>(?=.*?</toc>)', $mode, 'plugin_siteexport_toc');
38 $this->Lexer->addSpecialPattern("\[\[.+?\]\]", $mode, 'plugin_siteexport_toc');
116 public function render($mode, Doku_Renderer $renderer, $data) { argument
126 if ($mode != 'metadata' ) {
243 $this->_render_output($renderer, $mode, $instr);
270 } else if ($mode == 'metadata') {
323 private function _render_output($renderer, $mode, $instr) { argument
329 if ($mode == 'xhtml') {
[all …]

12345678910>>...98