Lines Matching refs:xref
41 public function make(string $xref, Tree $tree, string|null $gedcom = null): Note|null argument
43 …Registry::cache()->array()->remember(self::class . $xref . '@' . $tree->id(), function () use ($xr…
44 $gedcom ??= $this->gedcom($xref, $tree);
45 $pending = $this->pendingChanges($tree)->get($xref);
51 $xref = $this->extractXref($gedcom ?? $pending, $xref); variable in Fisharebest\\Webtrees\\Factories\\NoteFactory
53 return new Note($xref, $gedcom ?? '', $pending, $tree);
72 * @param string $xref
80 public function new(string $xref, string $gedcom, string|null $pending, Tree $tree): Note argument
82 return new Note($xref, $gedcom, $pending, $tree);
88 * @param string $xref
93 protected function gedcom(string $xref, Tree $tree): string|null argument
96 ->where('o_id', '=', $xref)