Lines Matching refs:facts
84 protected array $facts; variable in Fisharebest\\Webtrees\\GedcomRecord
110 $this->facts = $this->parseFacts();
285 $fact = $this->facts(['RESN'])->first();
310 foreach ($this->facts([], false, $access_level) as $fact) {
536 public function formatFirstMajorFact(array $facts, int $style): string argument
538 $fact = $this->facts($facts, true)->first();
576 foreach ($this->facts($events, false, null, true) as $event) {
595 foreach ($this->facts($events) as $event) {
616 public function facts( function in Fisharebest\\Webtrees\\GedcomRecord
627 $facts = new Collection();
629 foreach ($this->facts as $fact) {
631 $facts->push($fact);
640 $facts = Fact::sortFacts($facts);
652 $facts = $facts
664 $facts = $facts->filter(static fn (Fact $fact): bool => !$fact->isPendingDeletion());
667 return $facts;
681 if ($this->facts([$subtag], false, null, true)->count() < $max) {
706 $chan = $this->facts(['CHAN'])->first();
738 $chan = $this->facts(['CHAN'])->first();
814 foreach ($this->facts([], false, Auth::PRIV_HIDE, true) as $fact) {
858 $this->facts = $this->parseFacts();
909 $this->facts = $this->parseFacts();
954 foreach ($this->facts() as $fact) {
1026 protected function extractNamesFromFacts(int $level, string $fact_type, Collection $facts): void argument
1030 foreach ($facts as $fact) {
1072 $facts = [];
1079 $facts[] = $fact;
1085 $facts[] = $fact;
1089 return $facts;