Home
last modified time | relevance | path

Searched refs:targetPageId (Results 1 – 5 of 5) sorted by relevance

/plugin/404manager/
H A Dadmin.php264 $targetPageId = $row['TARGET'];
268 $targetPageId = $row['TargetPage'];
273 $title = p_get_first_heading($targetPageId);
275 if (!$title) $title = $targetPageId;
291 …tpl_link(wl($targetPageId), $this->truncateString($targetPageId, 30), 'title="' . hsc($title) . ' …
376 function addRedirection($sourcePageId, $targetPageId) argument
386 * @param string $targetPageId
428 if (!$this->isValidURL($targetPageId)) {
441 'target' => $targetPageId,
600 "TARGET" => $targetPageId,
[all …]
H A Daction.php522 foreach ($pagesWithSameName as $targetPageId => $title) {
528 $nbWordFound = $nbWordFound + substr_count($targetPageId, $word);
534 $bestPageId = $targetPageId;
538 … if ($nbWordFound >= $bestNbWordFound && strlen($bestPageId) > strlen($targetPageId)) {
541 $bestPageId = $targetPageId;
/plugin/combo/action/
H A Drouter.php368 $targetPageId = $databasePageRow->getFromRow("id");
369 $targetPath = WikiPath::createMarkupPathFromId($targetPageId);
740 * @param string $targetPageId - target page id argument
746 function executeTransparentRedirect(string $targetPageId, string $targetOriginId): bool
754 if (is_object($targetPageId)) {
755 $class = get_class($targetPageId);
756 LogUtility::msg("The parameters targetPageId ($targetPageId) is an object of the class ($class) and it should be a page id");
766 if (!(Identity::isReader($targetPageId))) {
774 $ID = $targetPageId;
1011 logRedirection(string $sourcePageId, $targetPageId, $algorithmic, $method) global() argument
[all...]
H A Dlinkmove.php201 $targetPageId = PageId::createForPage($targetPage);
202 $targetPageIdValue = $targetPageId->getValueFromStore();
206 $targetPageId
214 $targetPageId
/plugin/combo/ComboStrap/
H A DPageRules.php105 * @param $targetPageId
109 function addRule($sourcePageId, $targetPageId, $priority): ?int argument
112 return $this->addRuleWithDate($sourcePageId, $targetPageId, $priority, $currentDate);