Home
last modified time | relevance | path

Searched refs:wikiId (Results 1 – 17 of 17) sorted by relevance

/plugin/combo/ComboStrap/
H A DIdentity.php117 public static function isWriter($wikiId = null): bool argument
120 if ($wikiId === null) {
123 $wikiId = $executionContext->getRequestedPath()->getWikiId();
135 $perm = auth_quickaclcheck($wikiId);
137 $perm = auth_aclcheck($wikiId, '', null);
192 public static function isReader(string $wikiId): bool argument
194 $perm = self::getPermissions($wikiId);
204 private static function getPermissions(string $wikiId): int argument
206 if ($wikiId == null) {
207 $wikiId
[all...]
H A DCacheResults.php21 private string $wikiId; variable in ComboStrap\\CacheResults
25 * @param string $wikiId
27 public function __construct(string $wikiId) argument
29 $this->wikiId = $wikiId;
103 return $this->wikiId;
H A DEditButton.php57 private $wikiId; variable in ComboStrap\\EditButton
108 $wikiId = $attributes[TagAttributes::WIKI_ID];
112 ->setWikiId($wikiId);
157 $wikiId = $this->getWikiId();
170 $data[self::WIKI_ID] = $wikiId;
179 $slotPath = WikiPath::createMarkupPathFromId($wikiId);
279 $wikiId = $data[self::WIKI_ID] ?? null;
281 if ($wikiId === null) {
289 $page = MarkupPath::createMarkupFromId($wikiId);
338 $this->wikiId
[all...]
H A DFetcherMarkupBuilder.php72 $wikiId = $markuSourceWikiPath->getWikiId();
73 $localFile = wikiFN($wikiId);
76 $wikiId = $markuSourceWikiPath->toUriString();
79 $wikiId = $sourcePath->toAbsoluteId();
86 return [$wikiId, $localFile];
322 list($wikiId, $localFile) = self::getWikiIdAndLocalFileDokuwikiCompliant($this->builderMarkupSourcePath);
327 $newFetcherMarkup->instructionsCache = new CacheInstructions($wikiId, $localFile);
333 $newFetcherMarkup->contentCache = new CacheRenderer($wikiId, $localFile, $extension);
345 $newFetcherMarkup->snippetCache = new CacheParser($wikiId, $localFile, "snippet.json");
353 $newFetcherMarkup->metaPath = LocalPath::createFromPathString(metaFN($wikiId, '
[all...]
H A DHttpRequest.php37 * @param string $wikiId
41 public static function fetchXhtmlPageResponse(string $wikiId): HttpResponse argument
45 $url = FetcherPage::createPageFetcherFromId($wikiId)
H A DMarkupCacheDependencies.php310 $wikiId = $this->markupFetcher->getRequestedExecutingPath()->toWikiPath()->getWikiId();
311 $absoluteString = wikiFN($wikiId);
390 list($wikiId, $localPath) = FetcherMarkupBuilder::getWikiIdAndLocalFileDokuwikiCompliant($executingPath);
391 $this->dependenciesCacheStore = new CacheParser($wikiId, $localPath, "deps.json");
H A DFetcherMarkup.php1222 $wikiId = $this->getRequestedExecutingPath()->toWikiPath()->getWikiId();
1225 $wikiId = null;
1235 $METADATA_RENDERERS[$wikiId] =& $actualMeta;
1238 $actualMeta['page'] = $wikiId;
1291 unset($METADATA_RENDERERS[$wikiId]);
1296 if ($wikiId !== null) {
1297 p_save_metadata($wikiId, $this->meta);
H A DFetcherPage.php39 public static function createPageFetcherFromId(string $wikiId): FetcherPage argument
41 $wikiPath = WikiPath::createMarkupPathFromId($wikiId);
H A DFetcherRailBar.php206 public function setRequestedPageWikiId(string $wikiId): FetcherRailBar
208 $path = WikiPath::createMarkupPathFromId($wikiId);
205 setRequestedPageWikiId(string $wikiId) global() argument
H A DSnippet.php306 $wikiId = $executingFetcher->getSourcePath()->toWikiPath()->getWikiId();
307 $snippet->addElement($wikiId);
317 $wikiId = $executionContext->getExecutingParentMarkupHandler()->getSourcePath()->toWikiPath()->getWikiId();
318 $snippet->addElement($wikiId);
H A DWikiPath.php631 $wikiId = $relativePath->toAbsoluteId();
633 WikiPath::addNamespaceEndSeparatorIfNotPresent($wikiId);
635 WikiPath::addRootSeparatorIfNotPresent($wikiId);
636 return WikiPath::createWikiPath($wikiId, $driveRoot);
H A DExecutionContext.php824 $wikiId = $contextPath->getWikiId();
825 $INFO['id'] = $wikiId;
826 $INFO['namespace'] = getNS($wikiId); // php8 Undefined array key
H A DFetcherVignette.php337 $wikiId = substr($vignette, 0, $lastPoint);
338 $this->setPage(MarkupPath::createMarkupFromId($wikiId));
/plugin/combo/ComboStrap/Meta/Store/
H A DMetadataDokuWikiStore.php105 private static function isRendering(string $wikiId): bool argument
108 if (isset($METADATA_RENDERERS[$wikiId])) {
247 $wikiId = $this->getWikiId();
248 if (self::isRendering($wikiId)) {
255 $METADATA_RENDERERS[$wikiId][self::CURRENT_METADATA][$name] = $value;
256 $METADATA_RENDERERS[$wikiId][self::PERSISTENT_DOKUWIKI_KEY][$name] = $value;
260 p_set_metadata($wikiId,
/plugin/combo/syntax/
H A Dmedia.php95 $wikiId = $path->getWikiId();
96 if (media_isexternal($wikiId)) {
109 $renderer->meta[FirstRasterImage::PROPERTY_NAME] = $wikiId;
116 $isIcon = FetcherSvg::createSvgFromPath(WikiPath::createMediaPathFromId($wikiId))
122 $renderer->meta[FirstSvgIllustration::PROPERTY_NAME] = $wikiId;
124 $renderer->meta[FeaturedIcon::FIRST_ICON_PARSED] = $wikiId;
/plugin/combo/action/
H A Dqualitymutation.php78 $wikiId = $backlink->getWikiId();
87 "The {$wikiId} of {$path} had its HTML cache deleted ($desc)."
/plugin/combo/resources/snippet/js/
H A Dpage-explorer-tree.js6 let baseId = element.dataset.wikiId;