Home
last modified time | relevance | path

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

/webtrees/app/Http/RequestHandlers/
H A DMergeFactsAction.php65 $xref1 = Validator::parsedBody($request)->isXref()->string('xref1');
71 $record1 = Registry::gedcomRecordFactory()->make($xref1, $tree);
84 'xref1' => $xref1,
107 $gedcom = str_replace('@' . $xref2 . '@', '@' . $xref1 . '@', $record->gedcom());
122 ->update(['setting_value' => $xref1]);
128 ->update(['xref' => $xref1]);
133 ->whereIn('page_parameter', [$xref1, $xref2])
141 ->where('page_parameter', '=', $xref1)
167 ->update(['xref' => $xref1]);
H A DCheckTree.php223 $xref1 = $match[1];
224 $xref2 = $xrefs[strtoupper($xref1)] ?? null;
228 $message = I18N::translate('%s does not exist.', e($xref1));
229 …lineError($tree, $record->type, $record->xref, $line_number, $line, $message, $tag . '-' . $xref1);
231 … $message = $this->linkErrorMessage($tree, $xref1, $linked->type, Family::RECORD_TYPE);
234 … $message = $this->linkErrorMessage($tree, $xref1, $linked->type, Individual::RECORD_TYPE);
237 … $message = $this->linkErrorMessage($tree, $xref1, $linked->type, Media::RECORD_TYPE);
240 … $message = $this->linkErrorMessage($tree, $xref1, $linked->type, Note::RECORD_TYPE);
243 … $message = $this->linkErrorMessage($tree, $xref1, $linked->type, Source::RECORD_TYPE);
246 … $message = $this->linkErrorMessage($tree, $xref1, $linked->type, Repository::RECORD_TYPE);
[all …]
H A DMergeRecordsAction.php44 $xref1 = Validator::parsedBody($request)->isXref()->string('xref1');
48 $record1 = Registry::gedcomRecordFactory()->make($xref1, $tree);
61 'xref1' => $xref1,
68 'xref1' => $xref1,
H A DMergeFactsPage.php51 $xref1 = Validator::queryParams($request)->isXref()->string('xref1');
55 $record1 = Registry::gedcomRecordFactory()->make($xref1, $tree);
68 'xref1' => $xref1,
H A DMergeRecordsPage.php59 $xref1 = Validator::queryParams($request)->isXref()->string('xref1', '');
62 $record1 = Registry::gedcomRecordFactory()->make($xref1, $tree);
/webtrees/app/Module/
H A DRelationshipsChartModule.php521 $xref1 = $individual1->xref();
524 $paths = $dijkstra->shortestPaths($xref1, $xref2);
553 foreach ($dijkstra->shortestPaths($xref1, $xref2, $exclude) as $new_path) {
589 * @param string $xref1
595 private function allAncestors(string $xref1, string $xref2, int $tree_id): array argument
598 $xref1,
603 $xref1,
634 * @param string $xref1
640 private function excludeFamilies(string $xref1, string $xref2, int $tree_id): array argument
651 ->where('l1.l_from', '=', $xref1)