Lines Matching refs:pending
92 $pending = $this->pendingChanges($tree)->get($xref); variable in Fisharebest\\Webtrees\\Factories\\GedcomRecordFactory
94 if ($gedcom === null && $pending === null) {
98 $xref = $this->extractXref($gedcom ?? $pending, $xref);
99 $type = $this->extractType($gedcom ?? $pending);
101 return $this->newGedcomRecord($type, $xref, $gedcom ?? '', $pending, $tree);
110 * @param string|null $pending null for a record with no pending edits,
116 … public function new(string $xref, string $gedcom, string|null $pending, Tree $tree): GedcomRecord argument
118 return new GedcomRecord($xref, $gedcom, $pending, $tree);
137 * @param string|null $pending
142 …newGedcomRecord(string $type, string $xref, string $gedcom, string|null $pending, Tree $tree): Ged… argument
146 return Registry::familyFactory()->new($xref, $gedcom, $pending, $tree);
149 return Registry::headerFactory()->new($xref, $gedcom, $pending, $tree);
152 return Registry::individualFactory()->new($xref, $gedcom, $pending, $tree);
155 return Registry::mediaFactory()->new($xref, $gedcom, $pending, $tree);
158 return Registry::noteFactory()->new($xref, $gedcom, $pending, $tree);
161 return Registry::repositoryFactory()->new($xref, $gedcom, $pending, $tree);
164 return Registry::sourceFactory()->new($xref, $gedcom, $pending, $tree);
167 return Registry::submissionFactory()->new($xref, $gedcom, $pending, $tree);
170 return Registry::submitterFactory()->new($xref, $gedcom, $pending, $tree);
173 return $this->new($xref, $gedcom, $pending, $tree);