Home
last modified time | relevance | path

Searched refs:acronyms (Results 1 – 5 of 5) sorted by relevance

/dokuwiki/inc/Parsing/ParserMode/
H A DAcronym.php8 protected $acronyms = []; variable in dokuwiki\\Parsing\\ParserMode\\Acronym
14 * @param string[] $acronyms
16 public function __construct($acronyms) argument
18 usort($acronyms, [$this, 'compare']);
19 $this->acronyms = $acronyms;
25 if (!count($this->acronyms)) return;
28 $acronyms = array_map(['\\dokuwiki\\Parsing\\Lexer\\Lexer', 'escape'], $this->acronyms);
29 $this->pattern = '(?<=^|' . $bound . ')(?:' . implode('|', $acronyms)
[all...]
/dokuwiki/inc/
H A Dconfutils.php71 * returns a hash of acronyms
77 static $acronyms = null;
78 if (!$acronyms) {
79 $acronyms = retrieveConfig('acronyms', 'confToHash');
80 $acronyms = array_filter($acronyms, 'strlen');
82 return $acronyms;
H A Dparserutils.php684 $Renderer->acronyms = getAcronyms();
/dokuwiki/inc/parser/
H A Drenderer.php43 public $acronyms = [];
488 * Uses $this->acronyms
41 public $acronyms = array(); global() variable in Doku_Renderer
H A Dxhtml.php711 * Uses $this->acronyms
718 if (array_key_exists($acronym, $this->acronyms)) {
719 $title = $this->_xmlEntities($this->acronyms[$acronym]);