Lines Matching refs:xref
42 * @param string $xref
48 public function make(string $xref, Tree $tree, string|null $gedcom = null): Family|null argument
50 …Registry::cache()->array()->remember(self::class . $xref . '@' . $tree->id(), function () use ($xr…
51 $gedcom ??= $this->gedcom($xref, $tree);
52 $pending = $this->pendingChanges($tree)->get($xref);
58 $xref = $this->extractXref($gedcom ?? $pending, $xref); variable in Fisharebest\\Webtrees\\Factories\\FamilyFactory
68 return $this->new($xref, $gedcom ?? '', $pending, $tree);
87 * @param string $xref
95 public function new(string $xref, string $gedcom, string|null $pending, Tree $tree): Family argument
97 return new Family($xref, $gedcom, $pending, $tree);
103 * @param string $xref
108 protected function gedcom(string $xref, Tree $tree): string|null argument
111 ->where('f_id', '=', $xref)