Home
last modified time | relevance | path

Searched refs:modes (Results 1 – 5 of 5) sorted by path

/dokuwiki/
H A Dfeed.php75 $modes = [ global() variable
/dokuwiki/inc/Parsing/
H A DParser.php12 * Sets up the Lexer with modes and points it to the Handler
23 /** @var ModeInterface[] $modes */ variable in dokuwiki\\Parsing\\Parser
24 protected $modes = [];
46 $this->modes['base'] = $BaseMode;
50 $this->modes['base']->Lexer = $this->lexer;
64 if (!isset($this->modes['base'])) {
68 $this->modes[$name] = $Mode;
72 * Connect all modes with each other
83 foreach (array_keys($this->modes) as $mode) {
88 $this->modes[
[all...]
/dokuwiki/inc/Parsing/ParserMode/
H A DFormatting.php66 $modes = $PARSER_MODES['formatting'];
67 $key = array_search($type, $modes);
69 unset($modes[$key]);
73 $modes,
/dokuwiki/inc/
H A Dparserutils.php222 $modes = p_get_parsermodes();
227 //add modes to parser
228 foreach ($modes as $mode) {
549 * returns all available parser syntax modes in correct order
560 static $modes = null;
561 if ($modes != null && !defined('DOKU_UNITTEST')) {
562 return $modes;
568 // we now collect all syntax modes and their objects, then they will
570 $modes = [];
581 //add to modes
[all...]
/dokuwiki/lib/plugins/info/
H A Dsyntax.php217 * lists all known syntax types and their registered modes
227 foreach ($PARSER_MODES as $mode => $modes) {
233 $doc .= implode(', ', $modes);
242 * lists all known syntax modes and their sorting value
248 $modes = p_get_parsermodes();
251 foreach ($modes as $mode) {
257 foreach ($compactmodes as $sort => $modes) {
259 if (count($modes) > 1) {
260 $rowspan = ' rowspan="' . count($modes) . '"';
263 foreach ($modes a
[all...]