Home
last modified time | relevance | path

Searched refs:targetPage (Results 1 – 16 of 16) sorted by relevance

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
DGoogleCloudDialogflowCxV3beta1EventHandler.php37 public $targetPage; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3beta1EventHandler
86 public function setTargetPage($targetPage) argument
88 $this->targetPage = $targetPage;
95 return $this->targetPage;
DGoogleCloudDialogflowCxV3EventHandler.php37 public $targetPage; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3EventHandler
86 public function setTargetPage($targetPage) argument
88 $this->targetPage = $targetPage;
95 return $this->targetPage;
DGoogleCloudDialogflowCxV3beta1TransitionRoute.php41 public $targetPage; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3beta1TransitionRoute
104 public function setTargetPage($targetPage) argument
106 $this->targetPage = $targetPage;
113 return $this->targetPage;
DGoogleCloudDialogflowCxV3TransitionRoute.php41 public $targetPage; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3TransitionRoute
104 public function setTargetPage($targetPage) argument
106 $this->targetPage = $targetPage;
113 return $this->targetPage;
DGoogleCloudDialogflowCxV3beta1WebhookResponse.php39 public $targetPage; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3beta1WebhookResponse
114 public function setTargetPage($targetPage) argument
116 $this->targetPage = $targetPage;
123 return $this->targetPage;
DGoogleCloudDialogflowCxV3WebhookResponse.php39 public $targetPage; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3WebhookResponse
114 public function setTargetPage($targetPage) argument
116 $this->targetPage = $targetPage;
123 return $this->targetPage;
/plugin/catmenu/helper/
H A Dnamespace.php93 public function isTargetInNamespace(string $targetPage, string $namespace): bool argument
96 $targetPage = cleanID($targetPage);
98 if ($targetPage === '' || $namespace === '') return false;
99 return ($targetPage === $namespace) || (strpos($targetPage . ':', $namespace . ':') === 0);
/plugin/pagesicon/
H A Daction.php34 $targetPage = cleanID((string)$ID);
36 …$event->data['items'][] = new class($targetPage, $label, $title) extends \dokuwiki\Menu\Item\Abstr…
37 public function __construct(string $targetPage, string $label, string $title) { argument
40 $this->id = $targetPage;
165 private function canUploadToTarget(string $targetPage): bool { argument
166 if ($targetPage === '') return false;
167 return auth_quickaclcheck($targetPage) >= AUTH_UPLOAD;
193 private function getMediaManagerUrl(string $targetPage): string { argument
194 $namespace = getNS($targetPage);
218 $targetPage = cleanID((string)$ID);
[all …]
H A Dhelper.php47 …public function notifyIconUpdated(string $targetPage, string $action = 'update', string $mediaID =… argument
53 'target_page' => cleanID($targetPage),
98 public function getUploadNameChoices(string $targetPage, string $variant): array { argument
99 $pageID = noNS($targetPage);
282 public function getUploadIconPage(string $targetPage = '') { argument
285 $targetPage = cleanID($targetPage);
286 if ($targetPage === '') {
287 $targetPage = cleanID(getNS((string)$ID));
289 if ($targetPage === '') {
290 $targetPage = cleanID((string)$ID);
[all …]
H A DDOKU_EN76 | ''getUploadIconPage($targetPage = "")'' | ''2026-03-06'' | Returns the ''?do=pagesicon'' URL for …
78 | ''notifyIconUpdated($targetPage, $action = "update", $mediaID = "")'' | ''2026-03-06'' | Triggers…
89 | ''getUploadNameChoices($targetPage, $variant)'' | ''2026-03-11'' | Returns the allowed target nam…
H A DDOKU76 | ''getUploadIconPage($targetPage = "")'' | ''2026-03-06'' | Retourne l'URL ''?do=pagesicon'' d'une…
78 | ''notifyIconUpdated($targetPage, $action = "update", $mediaID = "")'' | ''2026-03-06'' | Déclench…
/plugin/catmenu/action/
H A Dprosemirror.php34 …ate function pageUsesAffectedCatmenu(string $hostPageID, string $content, string $targetPage): bool argument
41 if ($nsHelper->isTargetInNamespace($targetPage, $resolvedNS)) {
55 private function invalidateCacheForTarget(string $targetPage = ''): void argument
78 if ($targetPage !== '' && !$this->pageUsesAffectedCatmenu($id, $content, $targetPage)) {
145 $targetPage = (string)($event->data['page'] ?? $event->data['id'] ?? '');
146 $this->invalidateCacheForTarget($targetPage);
/plugin/visualindex/action/
H A Dprosemirror.php69 private function isTargetInNamespace(string $targetPage, string $namespace): bool argument
72 $targetPage = cleanID($targetPage);
74 if ($targetPage === '' || $namespace === '') return false;
75 return ($targetPage === $namespace) || (strpos($targetPage . ':', $namespace . ':') === 0);
78 …function pageUsesAffectedVisualindex(string $hostPageID, string $content, string $targetPage): bool argument
86 if ($this->isTargetInNamespace($targetPage, $resolvedNS)) {
/plugin/404manager/_test/
Dmanager.test.php411 $targetPage = 'testRedirectionsOperations:test';
412 saveWikiText($targetPage, 'Test ', 'but without any common name (namespace) in the path');
413 idx_addPage($targetPage);
423 $redirectManager->addRedirection($sourcePageId, $targetPage);
439 $targetPage = 'testMigrateDataStore:test';
440 saveWikiText($targetPage, 'Test ', 'test summary');
441 idx_addPage($targetPage);
457 $redirectManager->addRedirection($sourcePageIdValidated, $targetPage);
460 $redirectManager->addRedirection($sourcePageIdNotValidated, $targetPage);
/plugin/404manager/
Daction.php124 $targetPage = $this->redirectManager->getRedirectionTarget($ID);
127 if ($this->redirectManager->isValidURL($targetPage) && $targetPage) {
129 $this->redirectToExternalPage($targetPage);
154 if (page_exists($targetPage)) {
156 $this->redirectToDokuwikiPage($targetPage, self::REDIRECT_TARGET_PAGE_FROM_DATASTORE);
435 private function redirectToDokuwikiPage($targetPage, $redirectSource = 'Not Known') argument
442 $perm = auth_quickaclcheck($targetPage);
444 $perm = auth_aclcheck($targetPage, '', null);
456 $this->redirectManager->logRedirection($ID, $targetPage, $redirectSource);
459 $link = explode('#', $targetPage, 2);
/plugin/combo/action/
H A Dlinkmove.php200 $targetPage = MarkupPath::createMarkupFromId($targetId);
201 $targetPageId = PageId::createForPage($targetPage);
222 Aliases::createForPage($targetPage)