Lines Matching refs:xref
42 public function make(string $xref, Tree $tree, string|null $gedcom = null): Repository|null argument
44 …Registry::cache()->array()->remember(self::class . $xref . '@' . $tree->id(), function () use ($xr…
45 $gedcom ??= $this->gedcom($xref, $tree);
46 $pending = $this->pendingChanges($tree)->get($xref);
52 $xref = $this->extractXref($gedcom ?? $pending, $xref); variable in Fisharebest\\Webtrees\\Factories\\RepositoryFactory
54 return $this->new($xref, $gedcom ?? '', $pending, $tree);
78 * @param string $xref
86 public function new(string $xref, string $gedcom, string|null $pending, Tree $tree): Repository argument
88 return new Repository($xref, $gedcom, $pending, $tree);
94 * @param string $xref
99 protected function gedcom(string $xref, Tree $tree): string|null argument
102 ->where('o_id', '=', $xref)