Home
last modified time | relevance | path

Searched refs:getId (Results 1 – 21 of 21) sorted by relevance

/dokuwiki/inc/Feed/
H A DFeedMediaProcessor.php17 'image' => $this->getId(),
18 'ns' => getNS($this->getId()),
24 'image' => $this->getId(),
25 'ns' => getNS($this->getId()),
32 'image' => $this->getId(),
33 'ns' => getNS($this->getId())
39 'image' => $this->getId(),
40 'ns' => getNS($this->getId()),
59 $src1 = new MediaFile($this->getId(), $prev);
60 $src2 = new MediaFile($this->getId());
[all …]
H A DFeedPageProcessor.php39 return wl($this->getId(), $opt, true, '&');
67 $html = p_wiki_xhtml($this->getId(), '', false);
69 $html = p_wiki_xhtml($this->getId(), $this->getRev(), false);
83 return (array)($meta['subject'] ?? (string)getNS($this->getId()));
209 explode("\n", rawWiki($this->getId(), $prev)),
210 explode("\n", rawWiki($this->getId(), ''))
213 return new Diff([''], explode("\n", rawWiki($this->getId(), '')));
H A DFeedItemProcessor.php38 public function getId() function in dokuwiki\\Feed\\FeedItemProcessor
82 return $this->data['title'] ?? noNS($this->getId());
/dokuwiki/inc/Ui/Media/
H A DDisplayTile.php22 'image' => $this->mediaFile->getId(),
23 'ns' => getNS($this->mediaFile->getId()),
37 …echo '<a id="l_:' . $this->mediaFile->getId() . '" class="image thumb" href="' . $this->mmUrl . '"…
43 echo '<a href="' . $this->mmUrl . '" id="h_:' . $this->mediaFile->getId() . '">' .
H A DDisplay.php37 $src = ml($this->mediaFile->getId(), ['w' => $w, 'h' => $h]);
117 $id = $this->mediaFile->getId();
H A DDisplayRow.php18 $id = $this->mediaFile->getId();
61 $id = $this->mediaFile->getId();
/dokuwiki/lib/plugins/extension/
H A DInstaller.php95 throw new Exception('error_nourl', [$extension->getId()]);
157 $this->processed[$extension->getId()] = self::STATUS_SKIPPED;
171 if ($id == $extension->getId()) continue; // avoid circular dependencies
184 $this->processed[$extension->getId()] = $status;
199 throw new Exception('error_notinstalled', [$extension->getId()]);
203 throw new Exception('error_uninstall_protected', [$extension->getId()]);
210 …throw new Exception('error_uninstall_dependants', [$extension->getId(), implode(', ', $dependants)…
214 throw new Exception('msg_delete_failed', [$extension->getId()]);
218 $this->processed[$extension->getId()] = self::STATUS_REMOVED;
229 … if (!$extension->isInstalled()) throw new Exception('error_notinstalled', [$extension->getId()]);
[all …]
H A DExtensionApiResponse.php71 $this->id = $extension->getId();
94 return $this->extension->getId();
H A DLocal.php20 $extensions[$ext->getId()] = $ext;
H A DNotice.php117 implode(', ', array_map(static fn(Extension $dep) => $dep->getId(true), $missing))
137 implode(', ', array_map(static fn(Extension $dep) => $dep->getId(true), $found))
H A DExtension.php172 public function getId($wrap = false) function in dokuwiki\\plugin\\extension\\Extension
816 $this->remoteInfo = (array)$remote->getExtensionData($this->getId());
920 return $this->getId();
H A DGuiExtension.php25 $html = "<section class=\"$classes\" data-ext=\"{$this->extension->getId()}\">";
/dokuwiki/inc/TreeBuilder/
H A DTreeSort.php29 $pathA = explode(':', $a->getId());
30 $pathB = explode(':', $b->getId());
H A DAbstractBuilder.php150 $this->nodes[$node->getId()] = $node;
217 $R->externallink($node->getId(), $node->getTitle());
219 $R->internallink($node->getId(), $node->getTitle());
H A DPageTreeBuilder.php243 if (!$this->hasNotFlag(self::FLAG_KEEP_HIDDEN) && isHiddenPage($node->getId())) {
253 if (!$this->hasNotFlag(self::FLAG_KEEP_HIDDEN) && isHiddenPage($node->getId())) {
/dokuwiki/lib/plugins/extension/_test/
H A DExtensionTest.php28 $this->assertEquals('extension', $extension->getId());
29 $this->assertEquals('`extension`', $extension->getId(true));
/dokuwiki/_test/tests/Feed/
H A DFeedPageProcessorTest.php78 $this->assertEquals('wiki:dokuwiki', $proc->getId());
H A DFeedMediaProcessorTest.php49 $this->assertEquals('wiki:dokuwiki-128.png', $proc->getId());
/dokuwiki/inc/File/
H A DMediaFile.php36 public function getId() function in dokuwiki\\File\\MediaFile
H A DPageFile.php37 public function getId() function in dokuwiki\\File\\PageFile
/dokuwiki/inc/TreeBuilder/Node/
H A DAbstractNode.php37 public function getId(): string function in dokuwiki\\TreeBuilder\\Node\\AbstractNode