Home
last modified time | relevance | path

Searched refs:totalEvents (Results 1 – 3 of 3) sorted by relevance

/webtrees/app/Statistics/Repository/
H A DEventRepository.php114 public function totalEvents(array $events = []): string function in Fisharebest\\Webtrees\\Statistics\\Repository\\EventRepository
126 return $this->totalEvents(Gedcom::BIRTH_EVENTS);
134 return $this->totalEvents([self::EVENT_BIRTH]);
142 return $this->totalEvents(Gedcom::DEATH_EVENTS);
150 return $this->totalEvents([self::EVENT_DEATH]);
158 return $this->totalEvents(Gedcom::MARRIAGE_EVENTS);
166 return $this->totalEvents([self::EVENT_MARRIAGE]);
174 return $this->totalEvents(Gedcom::DIVORCE_EVENTS);
182 return $this->totalEvents([self::EVENT_DIVORCE]);
211 return $this->totalEvents($no_facts);
/webtrees/app/Statistics/Repository/Interfaces/
H A DEventRepositoryInterface.php34 public function totalEvents(array $events = []): string; function
/webtrees/app/
H A DStatistics.php450 public function totalEvents(array $events = []): string function in Fisharebest\\Webtrees\\Statistics
452 return $this->event_repository->totalEvents($events);