Searched refs:acronyms (Results 1 – 6 of 6) sorted by relevance
10 protected $acronyms = []; variable in dokuwiki\\Parsing\\ParserMode\\Acronym16 * @param string[] $acronyms18 public function __construct($acronyms) argument20 usort($acronyms, $this->compare(...));21 $this->acronyms = $acronyms;33 if (!count($this->acronyms)) return;36 $acronyms = array_map(Lexer::escape(...), $this->acronyms);37 … $this->pattern = '(?<=^|' . $bound . ')(?:' . implode('|', $acronyms) . ')(?=' . $bound . ')';43 if (!count($this->acronyms)) return;
77 static $acronyms = null;78 if (!$acronyms) {79 $acronyms = retrieveConfig('acronyms', 'confToHash');80 $acronyms = array_filter($acronyms, strlen(...));82 return $acronyms;
573 $Renderer->acronyms = getAcronyms();
18 !/conf/acronyms.conf
43 public $acronyms = []; variable in Doku_Renderer
720 if (array_key_exists($acronym, $this->acronyms)) {721 $title = $this->_xmlEntities($this->acronyms[$acronym]);