Lines Matching refs:record

150     private GedcomRecord $record;  variable in Fisharebest\\Webtrees\\Fact
188 $this->record = $parent;
229 return Registry::familyFactory()->make($xref, $this->record->tree());
235 return Registry::individualFactory()->make($xref, $this->record->tree());
238 Registry::individualFactory()->make($xref, $this->record->tree()) ??
239 Registry::submitterFactory()->make($xref, $this->record->tree());
241 return Registry::sourceFactory()->make($xref, $this->record->tree());
243 return Registry::mediaFactory()->make($xref, $this->record->tree());
245 return Registry::repositoryFactory()->make($xref, $this->record->tree());
247 return Registry::noteFactory()->make($xref, $this->record->tree());
251 return Registry::submitterFactory()->make($xref, $this->record->tree());
253 return Registry::submissionFactory()->make($xref, $this->record->tree());
255 return Registry::locationFactory()->make($xref, $this->record->tree());
257 return Registry::gedcomRecordFactory()->make($xref, $this->record->tree());
316 $access_level ??= Auth::accessLevel($this->record->tree());
342 $xref = $this->record->xref();
343 $fact_privacy = $this->record->tree()->getFactPrivacy();
344 $individual_fact_privacy = $this->record->tree()->getIndividualFactPrivacy();
367 if (Auth::isManager($this->record->tree())) {
372 …return Auth::isEditor($this->record->tree()) && !str_ends_with($this->attribute('RESN'), Restricti…
382 $this->place ??= new Place($this->attribute('PLAC'), $this->record->tree());
428 return $this->record->tag() . ':' . $this->tag;
436 public function record(): GedcomRecord function in Fisharebest\\Webtrees\\Fact
438 return $this->record;
458 return $element->value($type, $this->record->tree());
545 …if ($this->record instanceof Individual && in_array($this->tag, Gedcom::BIRTH_EVENTS, true) && $th…
546 …[] = $date->display() . view('fact-parents-age', ['individual' => $this->record, 'birth_date' => $…
651 … if ($a->record instanceof Family && $b->record instanceof Family && $a->record !== $b->record) {
783 return $this->id . '@' . $this->record->xref();