Home
last modified time | relevance | path

Searched refs:dom (Results 1 – 5 of 5) sorted by last modified time

/dokuwiki/inc/lang/lv/
H A Dread.txt
/dokuwiki/inc/lang/pt-br/
H A Dindex.txt
/dokuwiki/vendor/simplepie/simplepie/src/
H A DLocator.php71 public $dom; variable in SimplePie\\Locator
84 $this->dom = new \DOMDocument();
88 $this->dom->loadHTML($this->file->body);
90 $this->dom = null;
94 $this->dom = null;
166 if ($this->dom === null) {
171 $elements = $this->dom->getElementsByTagName('base');
202 if ($this->dom === null) {
206 $links = $this->dom->getElementsByTagName($name);
243 if ($this->dom
[all...]
/dokuwiki/lib/plugins/authad/
H A Daction.php42 if ($INPUT->str('dom')) {
44 $dom = $auth->getUserDomain($usr);
45 if (!$dom) {
46 $usr = "$usr@" . $INPUT->str('dom');
78 $dom = $auth->getUserDomain($usr);
81 if ($dom) {
89 $element = $form->addDropdown('dom', $domains, $this->getLang('domain'), $pos + 1);
H A Dauth.php329 [$dom, $user] = sexplode('\\', $user, 2, '');
330 if (!$user) $user = $dom;
331 if ($dom) $domain = $dom;
332 [$user, $dom] = sexplode('@', $user, 2, '');
333 if ($dom) $domain = $dom;