Home
last modified time | relevance | path

Searched refs:mode (Results 426 – 450 of 2447) sorted by last modified time

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

/plugin/barcodes/
H A Dsyntax.php39 public function connectTo($mode) argument
41 $this->Lexer->addSpecialPattern('<barcode[^>]*/?>', $mode, 'plugin_barcodes');
74 public function render($mode, Doku_Renderer $renderer, $data) argument
76 if ($mode == 'xhtml') {
H A DLICENSE.md26 Defining a subclass of a class defined by the Library is deemed a mode
/plugin/fastwiki/
H A DLICENSE313 when it starts in an interactive mode:
H A Dtemplates.js15 makeShowRowLI: function(pagetools, mode) { argument
22 m_showRow = $('<li>' + m_utils.makeShowLink(link.href) + '</li>').toggle(mode != 'show');
29 fixButtons: function(showParent, allButtons, mode) { argument
37 $(elt).prepend(newBtn.toggle(mode!='show'));
50 // Only show is supported as a start mode, because otherwise, we'd have to add pagetools for each action and check for actions being allowed.
53 'fastwiki:init': function(e, mode) { argument
54 m_utils.makeShowRowLI($("#dokuwiki__pagetools ul"), mode);
56 'fastwiki:afterSwitch': function(e, mode, isSectionEdit, prevMode) { argument
59 $("#dokuwiki__top").toggleClass("showSidebar hasSidebar", mode == 'show');
60 $("#dokuwiki__aside").css('display', mode
70 AnonymousFunction8a7865a80400(e, mode) global() argument
89 AnonymousFunction8a7865a80600(e, mode, isSectionEdit, prevMode) global() argument
100 AnonymousFunction8a7865a80700(e, mode) global() argument
105 AnonymousFunction8a7865a80800(e, mode, isSectionEdit, prevMode) global() argument
121 AnonymousFunction8a7865a80a00(e, mode) global() argument
130 AnonymousFunction8a7865a80b00(e, mode, isSectionEdit, prevMode) global() argument
[all...]
/plugin/structgantt/meta/
H A DGantt.php57 public function __construct($id, $mode, \Doku_Renderer $renderer, SearchConfig $searchConfig)
59 parent::__construct($id, $mode, $renderer, $searchConfig);
60 if ($this->mode !== 'xhtml') {
218 if ($this->mode !== 'xhtml') {
326 $row[$this->labelRef]->render($this->renderer, $this->mode);
338 $row[$this->titleRef]->render($this->renderer, $this->mode);
343 $value->render($this->renderer, $this->mode);
17 protected $mode; global() variable in dokuwiki\\plugin\\structgantt\\meta\\Gantt
87 __construct($id, $mode, \\Doku_Renderer $renderer, SearchConfig $searchConfig) global() argument
/plugin/structgantt/
H A Dsyntax.php22 * @param string $mode Parser mode
24 public function connectTo($mode) { argument
25 $this->Lexer->addSpecialPattern('----+ *struct gantt *-+\n.*?\n----+', $mode, 'plugin_structgantt');
/plugin/authdrupal8/
H A DREADME.md43 **Before** setting your authentication mode to ```authdrupal8``` you should think about the following:
H A Dauth.php451 * @param string $mode could be 'READ' or 'WRITE'
454 protected function _lockTables($mode) {
458 if($mode == "READ" || $mode == "WRITE") {
463 $sql .= "$table $mode";
465 _lockTables($mode) global() argument
/plugin/twofactoraltemail/
H A DLICENSE313 when it starts in an interactive mode:
/plugin/docnavigation/syntax/
H A Dpagenav.php36 * Needs to return one of the mode types defined in $PARSER_MODES in parser.php
65 * Sort for applying this mode
75 * @param string $mode
77 public function connectTo($mode)
79 $this->Lexer->addSpecialPattern('<-[^\n]*\^[^\n]*\^[^\n]*->', $mode, 'plugin_docnavigation_pagenav');
80 $this->Lexer->addSpecialPattern('<<[^\n]*\^[^\n]*\^[^\n]*>>', $mode, 'plugin_docnavigation_pagenav');
74 connectTo($mode) global() argument
H A Dtoc.php20 * Needs to return one of the mode types defined in $PARSER_MODES in parser.php
49 * Sort for applying this mode
59 * @param string $mode argument
61 public function connectTo($mode)
63 $this->Lexer->addSpecialPattern('<doctoc\b.*?>', $mode, 'plugin_docnavigation_toc');
/plugin/gitlabapi/
H A Dsyntax.php33 public function connectTo($mode) { argument
34 $this->Lexer->addSpecialPattern('<gitlab-api[^>]*/>', $mode, 'plugin_gitlabapi');
99 function render($mode, Doku_Renderer $renderer, $data) { argument
100 if ($mode !== 'xhtml') return false;
101 if ($mode != 'xhtml') return false;
/plugin/edittable/lib/
H A Dhandsontable.less1038 animation-fill-mode: forwards;
1039 -webkit-animation-fill-mode: forwards;
1045 animation-fill-mode: forwards;
1046 -webkit-animation-fill-mode: forwards;
/plugin/blog/
H A DCOPYING319 when it starts in an interactive mode:
H A Daction.php45 // determine page id by rewrite mode
228 if (!in_array($cache->mode, array('xhtml', 'metadata'))) return;
/plugin/blog/syntax/
H A Dautoarchive.php19 function connectTo($mode) { argument
20 $this->Lexer->addSpecialPattern('\{\{autoarchive>.*?\}\}', $mode, 'plugin_blog_autoarchive');
39 function render($mode, Doku_Renderer $renderer, $data) { argument
41 if ($mode != 'xhtml') return false;
H A Dblog.php17 function connectTo($mode) { argument
18 $this->Lexer->addSpecialPattern('\{\{blog>.*?\}\}',$mode,'plugin_blog_blog');
48 function render($mode, Doku_Renderer $renderer, $data) { argument
77 if ($mode == 'xhtml') {
83 if ((auth_quickaclcheck($ns.':*') >= AUTH_CREATE) && ($mode == 'xhtml')) {
106 if ($mode == 'xhtml') {
125 if ($mode == 'xhtml' || $mode == 'code') {
134 } elseif ($mode == 'metadata') {
140 if ($mode
[all...]
H A Ddraft.php14 function connectTo($mode) { argument
15 $this->Lexer->addSpecialPattern('~~DRAFT~~', $mode, 'plugin_blog_draft');
25 function render($mode, Doku_Renderer $renderer, $data) { argument
26 if ($mode == 'xthml') {
28 } elseif ($mode == 'metadata') {
H A Darchive.php19 function connectTo($mode) { argument
20 $this->Lexer->addSpecialPattern('\{\{archive>.*?\}\}', $mode, 'plugin_blog_archive');
92 function render($mode, Doku_Renderer $renderer, $data) { argument
112 if ($mode == 'xhtml') {
143 } elseif ($mode == 'metadata') {
/plugin/pubmed2020/
H A Dsyntax.php85 function connectTo($mode) { argument
87 $mode,'plugin_pubmed2020');
361 function render($mode, Doku_Renderer $renderer, $data) { argument
362 if ($mode != 'xhtml')
/plugin/simplenavi/
H A Dsyntax.php36 public function connectTo($mode)
38 $this->Lexer->addSpecialPattern('{{simplenavi>[^}]*}}', $mode, 'plugin_simplenavi');
34 connectTo($mode) global() argument
/plugin/mathpublish/
H A Dsyntax.php77 * @param string $mode
79 public function connectTo($mode) { argument
80 $this->Lexer->addSpecialPattern('<m.*?>.*?(?:</m>)', $mode, 'plugin_mathpublish');
126 * @param string $mode
131 function render($mode, Doku_Renderer $R, $data) { argument
133 if($mode != 'xhtml' && $mode != 'odt') return false;
166 if($mode == 'odt') {
/plugin/statdisplay/
H A Dsyntax.php30 function connectTo($mode) argument
32 $this->Lexer->addSpecialPattern('\{\{statdisplay>[^\}]+\}\}', $mode, 'plugin_statdisplay');
/plugin/advanced/lang/en/config/
H A Dstyleini.txt9 cssfile.css = mode
11 …le.css'' is your file name and ''mode'' is one of the supported output modes as described at [[CSS…
/plugin/advanced/
H A DLICENSE313 when it starts in an interactive mode:

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