Lines Matching refs:pending
81 protected string|null $pending; variable in Fisharebest\\Webtrees\\GedcomRecord
100 * @param string|null $pending null for a record with no pending edits,
104 public function __construct(string $xref, string $gedcom, string|null $pending, Tree $tree) argument
108 $this->pending = $pending;
199 return $this->pending ?? $this->gedcom;
209 return $this->pending !== null;
219 return $this->pending === '';
307 [$gedcom] = explode("\n", $this->gedcom . $this->pending, 2);
797 if ($this->pending === '') {
804 if ($this->pending !== null && $this->pending !== '') {
805 $old_gedcom = $this->pending;
847 $this->pending = $new_gedcom;
854 $this->pending = null;
898 $this->pending = $gedcom;
906 $this->pending = null;
1065 if ($this->pending !== null && $this->pending !== '') {
1066 $pending_facts = preg_split('/\n(?=1)/', $this->pending);
1076 if ($this->pending !== null && !in_array($gedcom_fact, $pending_facts, true)) {