Home
last modified time | relevance | path

Searched refs:xref2 (Results 1 – 6 of 6) sorted by relevance

/webtrees/app/Http/RequestHandlers/
H A DMergeFactsAction.php66 $xref2 = Validator::parsedBody($request)->isXref()->string('xref2');
72 $record2 = Registry::gedcomRecordFactory()->make($xref2, $tree);
85 'xref2' => $xref2,
107 $gedcom = str_replace('@' . $xref2 . '@', '@' . $xref1 . '@', $record->gedcom());
121 ->where('setting_value', '=', $xref2)
127 ->where('xref', '=', $xref2)
133 ->whereIn('page_parameter', [$xref1, $xref2])
147 ->where('page_parameter', '=', $xref2)
166 ->where('xref', '=', $xref2)
H A DMergeRecordsAction.php45 $xref2 = Validator::parsedBody($request)->isXref()->string('xref2');
49 $record2 = Registry::gedcomRecordFactory()->make($xref2, $tree);
62 'xref2' => $xref2,
69 'xref2' => $xref2,
H A DMergeFactsPage.php52 $xref2 = Validator::queryParams($request)->isXref()->string('xref2');
56 $record2 = Registry::gedcomRecordFactory()->make($xref2, $tree);
69 'xref2' => $xref2,
H A DMergeRecordsPage.php60 $xref2 = Validator::queryParams($request)->isXref()->string('xref2', '');
63 $record2 = Registry::gedcomRecordFactory()->make($xref2, $tree);
H A DCheckTree.php224 $xref2 = $xrefs[strtoupper($xref1)] ?? null;
225 $linked = $records[$xref2] ?? null;
277 } elseif ($xref1 !== $xref2) {
278 … $message = I18N::translate('%1$s does not exist. Did you mean %2$s?', e($xref1), e($xref2));
/webtrees/app/Module/
H A DRelationshipsChartModule.php212 $xref2 = Validator::attributes($request)->isXref()->string('xref2', '');
230 $individual2 = Registry::individualFactory()->make($xref2, $tree);
522 $xref2 = $individual2->xref();
524 $paths = $dijkstra->shortestPaths($xref1, $xref2);
553 foreach ($dijkstra->shortestPaths($xref1, $xref2, $exclude) as $new_path) {
590 * @param string $xref2
595 private function allAncestors(string $xref1, string $xref2, int $tree_id): array argument
599 $xref2,
604 $xref2,
635 * @param string $xref2
[all …]