Lines Matching refs:xref
73 protected string $xref; variable in Fisharebest\\Webtrees\\GedcomRecord
98 * @param string $xref
104 public function __construct(string $xref, string $gedcom, string|null $pending, Tree $tree) argument
106 $this->xref = $xref;
176 public function xref(): string function in Fisharebest\\Webtrees\\GedcomRecord
178 return $this->xref;
230 'xref' => $this->xref(),
253 $cache_key = 'show-' . $this->xref . '-' . $this->tree->id() . '-' . $access_level;
326 $xref = $match[1];
327 $record = Registry::gedcomRecordFactory()->make($xref, $this->tree);
378 return e($this->xref());
453 return $this->xref . '@' . $this->tree->id();
840 'xref' => $this->xref,
890 'xref' => $this->xref,
911 Log::addEditLog('Update: ' . static::RECORD_TYPE . ' ' . $this->xref, $this->tree);
925 'xref' => $this->xref,
939 Log::addEditLog('Delete: ' . static::RECORD_TYPE . ' ' . $this->xref, $this->tree);
945 * @param string $xref
950 public function removeLinks(string $xref, bool $update_chan): void argument
952 $value = '@' . $xref . '@';
1107 …if ($this->xref() === $this->tree->getUserPreference(Auth::user(), UserInterface::PREF_TREE_ACCOUN…
1130 if (isset($individual_privacy[$this->xref()])) {
1131 return $individual_privacy[$this->xref()] >= $access_level;
1150 ->where('o_id', '=', $this->xref())