/webtrees/app/Statistics/Google/ |
H A D | ChartMortality.php | 33 private ColorService $color_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartMortality 36 * @param ColorService $color_service 38 public function __construct(ColorService $color_service) argument 40 $this->color_service = $color_service; 81 … $colors = $this->color_service->interpolateRgb($color_living, $color_dead, count($data) - 1);
|
H A D | ChartCommonGiven.php | 33 private ColorService $color_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartCommonGiven 36 * @param ColorService $color_service 38 public function __construct(ColorService $color_service) argument 40 $this->color_service = $color_service; 83 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartFamilyWithSources.php | 33 private ColorService $color_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartFamilyWithSources 36 * @param ColorService $color_service 38 public function __construct(ColorService $color_service) argument 40 $this->color_service = $color_service; 81 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartIndividualWithSources.php | 33 private ColorService $color_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartIndividualWithSources 36 * @param ColorService $color_service 38 public function __construct(ColorService $color_service) argument 40 $this->color_service = $color_service; 81 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartMedia.php | 34 private ColorService $color_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartMedia 37 * @param ColorService $color_service 39 public function __construct(ColorService $color_service) argument 41 $this->color_service = $color_service; 78 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartFamilyLargest.php | 41 private ColorService $color_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartFamilyLargest 44 * @param ColorService $color_service 47 public function __construct(ColorService $color_service, Tree $tree) argument 50 $this->color_service = $color_service; 106 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartCommonSurname.php | 37 private ColorService $color_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartCommonSurname 42 * @param ColorService $color_service 45 …public function __construct(ColorService $color_service, SurnameTraditionInterface $surname_tradit… argument 48 $this->color_service = $color_service; 141 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartDivorce.php | 41 private ColorService $color_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartDivorce 45 * @param ColorService $color_service 48 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument 51 $this->color_service = $color_service; 105 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartDeath.php | 41 private ColorService $color_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartDeath 45 * @param ColorService $color_service 48 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument 51 $this->color_service = $color_service; 105 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartBirth.php | 41 private ColorService $color_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartBirth 45 * @param ColorService $color_service 48 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument 51 $this->color_service = $color_service; 105 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartMarriage.php | 41 private ColorService $color_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartMarriage 45 * @param ColorService $color_service 48 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument 52 $this->color_service = $color_service; 105 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
/webtrees/app/Statistics/Repository/ |
H A D | MediaRepository.php | 35 private ColorService $color_service; variable in Fisharebest\\Webtrees\\Statistics\\Repository\\MediaRepository 64 * @param ColorService $color_service 67 public function __construct(ColorService $color_service, Tree $tree) argument 69 $this->color_service = $color_service; 256 return (new ChartMedia($this->color_service))
|
H A D | IndividualRepository.php | 71 private ColorService $color_service; variable in Fisharebest\\Webtrees\\Statistics\\Repository\\IndividualRepository 77 * @param ColorService $color_service 80 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument 83 $this->color_service = $color_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)) 1820 return (new ChartCommonGiven($this->color_service)) 1848 return (new ChartCommonSurname($this->color_service, $surname_tradition)) 1865 return (new ChartMortality($this->color_service)) 1884 return (new ChartIndividualWithSources($this->color_service)) [all …]
|
H A D | FamilyRepository.php | 58 private ColorService $color_service; variable in Fisharebest\\Webtrees\\Statistics\\Repository\\FamilyRepository 64 * @param ColorService $color_service 67 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument 70 $this->color_service = $color_service; 687 return (new ChartFamilyLargest($this->color_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))
|
/webtrees/app/ |
H A D | Statistics.php | 133 * @param ColorService $color_service 141 ColorService $color_service, argument 149 …$this->individual_repository = new IndividualRepository($century_service, $color_service, $tree); 150 … $this->family_repository = new FamilyRepository($century_service, $color_service, $tree); 152 $this->media_repository = new MediaRepository($color_service, $tree);
|