/webtrees/app/Statistics/Google/ |
H A D | ChartChildren.php | 36 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartChildren 39 * @param CenturyService $century_service 42 public function __construct(CenturyService $century_service, Tree $tree) argument 44 $this->century_service = $century_service; 91 $this->century_service->centuryName($record->century),
|
H A D | ChartDivorce.php | 39 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartDivorce 44 * @param CenturyService $century_service 48 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument 50 $this->century_service = $century_service; 100 $this->century_service->centuryName($record->century),
|
H A D | ChartDeath.php | 39 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartDeath 44 * @param CenturyService $century_service 48 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument 50 $this->century_service = $century_service; 100 $this->century_service->centuryName($record->century),
|
H A D | ChartBirth.php | 39 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartBirth 44 * @param CenturyService $century_service 48 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument 50 $this->century_service = $century_service; 100 $this->century_service->centuryName($record->century),
|
H A D | ChartMarriage.php | 39 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartMarriage 44 * @param CenturyService $century_service 48 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument 51 $this->century_service = $century_service; 100 $this->century_service->centuryName($record->century),
|
H A D | ChartNoChildrenFamilies.php | 37 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartNoChildrenFamilies 40 * @param CenturyService $century_service 43 public function __construct(CenturyService $century_service, Tree $tree) argument 45 $this->century_service = $century_service; 107 $this->century_service->centuryName((int) $record->century),
|
H A D | ChartAge.php | 40 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartAge 43 * @param CenturyService $century_service 46 public function __construct(CenturyService $century_service, Tree $tree) argument 48 $this->century_service = $century_service; 120 $this->century_service->centuryName($century),
|
H A D | ChartMarriageAge.php | 40 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartMarriageAge 43 * @param CenturyService $century_service 46 public function __construct(CenturyService $century_service, Tree $tree) argument 49 $this->century_service = $century_service; 143 $this->century_service->centuryName($century),
|
/webtrees/app/Statistics/Repository/ |
H A D | FamilyRepository.php | 56 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Repository\\FamilyRepository 63 * @param CenturyService $century_service 67 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument 69 $this->century_service = $century_service; 293 return (new ChartNoChildrenFamilies($this->century_service, $this->tree)) 586 return (new ChartChildren($this->century_service, $this->tree)) 1433 return (new ChartMarriageAge($this->century_service, $this->tree)) 1714 return (new ChartMarriage($this->century_service, $this->color_service, $this->tree)) 1728 return (new ChartDivorce($this->century_service, $this->color_service, $this->tree))
|
H A D | IndividualRepository.php | 69 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Repository\\IndividualRepository 76 * @param CenturyService $century_service 80 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument 82 $this->century_service = $century_service; 728 return (new ChartBirth($this->century_service, $this->color_service, $this->tree)) 786 return (new ChartDeath($this->century_service, $this->color_service, $this->tree)) 830 return (new ChartAge($this->century_service, $this->tree))->chartAge();
|
/webtrees/app/ |
H A D | Statistics.php | 132 * @param CenturyService $century_service 140 CenturyService $century_service, argument 149 …$this->individual_repository = new IndividualRepository($century_service, $color_service, $tree); 150 … $this->family_repository = new FamilyRepository($century_service, $color_service, $tree);
|