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