xref: /webtrees/app/Statistics/Google/ChartIndividualWithSources.php (revision 88de55fda5bcccfc1527a19eaa4a245e17861255)
1<?php
2/**
3 * webtrees: online genealogy
4 * Copyright (C) 2018 webtrees development team
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16declare(strict_types=1);
17
18namespace Fisharebest\Webtrees\Statistics\Google;
19
20use Fisharebest\Webtrees\I18N;
21use Fisharebest\Webtrees\Statistics\AbstractGoogle;
22
23/**
24 *
25 */
26class ChartIndividualWithSources extends AbstractGoogle
27{
28    /**
29     * Create a chart showing individuals with/without sources.
30     *
31     * @param int         $tot_indi        The total number of individuals
32     * @param int         $tot_indi_source The total number of individuals with sources
33     * @param string|null $color_from
34     * @param string|null $color_to
35     *
36     * @return string
37     */
38    public function chartIndisWithSources(
39        int $tot_indi,
40        int $tot_indi_source,
41        string $color_from = null,
42        string $color_to   = null
43    ): string {
44        $chart_color1 = (string) $this->theme->parameter('distribution-chart-no-values');
45        $chart_color2 = (string) $this->theme->parameter('distribution-chart-high-values');
46        $color_from   = $color_from ?? $chart_color1;
47        $color_to     = $color_to   ?? $chart_color2;
48
49        $data = [
50            [
51                I18N::translate('Type'),
52                I18N::translate('Total')
53            ],
54            [
55                I18N::translate('Without sources'),
56                $tot_indi - $tot_indi_source
57            ],
58            [
59                I18N::translate('With sources'),
60                $tot_indi_source
61            ],
62        ];
63
64        $colors = $this->interpolateRgb($color_from, $color_to, \count($data) - 1);
65
66        return view(
67            'statistics/other/charts/pie',
68            [
69                'title'            => I18N::translate('Individuals with sources'),
70                'data'             => $data,
71                'colors'           => $colors,
72                'labeledValueText' => 'percentage',
73            ]
74        );
75    }
76}
77