Lines Matching refs:xref
41 * @param string $xref
47 public function make(string $xref, Tree $tree, string|null $gedcom = null): Individual|null argument
49 …Registry::cache()->array()->remember(self::class . $xref . '@' . $tree->id(), function () use ($xr…
50 $gedcom ??= $this->gedcom($xref, $tree);
51 $pending = $this->pendingChanges($tree)->get($xref);
56 $xref = $this->extractXref($gedcom ?? $pending, $xref); variable in Fisharebest\\Webtrees\\Factories\\IndividualFactory
58 return $this->new($xref, $gedcom ?? '', $pending, $tree);
77 * @param string $xref
85 public function new(string $xref, string $gedcom, string|null $pending, Tree $tree): Individual argument
87 return new Individual($xref, $gedcom, $pending, $tree);
93 * @param string $xref
98 protected function gedcom(string $xref, Tree $tree): string|null argument
101 ->where('i_id', '=', $xref)