xref: /webtrees/app/Module/TopGivenNamesModule.php (revision 44d05b50b37837a977c66c3b1750262bf1421171)
1<?php
2/**
3 * webtrees: online genealogy
4 * Copyright (C) 2017 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 */
16namespace Fisharebest\Webtrees\Module;
17
18use Fisharebest\Webtrees\Auth;
19use Fisharebest\Webtrees\Bootstrap4;
20use Fisharebest\Webtrees\Filter;
21use Fisharebest\Webtrees\Html;
22use Fisharebest\Webtrees\I18N;
23use Fisharebest\Webtrees\Stats;
24use Fisharebest\Webtrees\View;
25
26/**
27 * Class TopGivenNamesModule
28 */
29class TopGivenNamesModule extends AbstractModule implements ModuleBlockInterface {
30	/** {@inheritdoc} */
31	public function getTitle() {
32		return /* I18N: Name of a module. Top=Most common */ I18N::translate('Top given names');
33	}
34
35	/** {@inheritdoc} */
36	public function getDescription() {
37		return /* I18N: Description of the “Top given names” module */ I18N::translate('A list of the most popular given names.');
38	}
39
40	/**
41	 * Generate the HTML content of this block.
42	 *
43	 * @param int      $block_id
44	 * @param bool     $template
45	 * @param string[] $cfg
46	 *
47	 * @return string
48	 */
49	public function getBlock($block_id, $template = true, $cfg = []) {
50		global $ctype, $WT_TREE;
51
52		$num       = $this->getBlockSetting($block_id, 'num', '10');
53		$infoStyle = $this->getBlockSetting($block_id, 'infoStyle', 'table');
54
55		foreach (['num', 'infoStyle'] as $name) {
56			if (array_key_exists($name, $cfg)) {
57				$$name = $cfg[$name];
58			}
59		}
60
61		$stats = new Stats($WT_TREE);
62
63		$content = '<div class="normal_inner_block">';
64		//Select List or Table
65		switch ($infoStyle) {
66		case 'list': // Output style 1:  Simple list style. Better suited to left side of page.
67			if (I18N::direction() === 'ltr') {
68				$padding = 'padding-left: 15px';
69			} else {
70				$padding = 'padding-right: 15px';
71			}
72			$params = [1, $num, 'rcount'];
73			// List Female names
74			$totals = $stats->commonGivenFemaleTotals($params);
75			if ($totals) {
76				$content .= '<b>' . I18N::translate('Females') . '</b><div class="wrap" style="' . $padding . '">' . $totals . '</div><br>';
77			}
78			// List Male names
79			$totals = $stats->commonGivenMaleTotals($params);
80			if ($totals) {
81				$content .= '<b>' . I18N::translate('Males') . '</b><div class="wrap" style="' . $padding . '">' . $totals . '</div><br>';
82			}
83			break;
84		case 'table': // Style 2: Tabular format. Narrow, 2 or 3 column table, good on right side of page
85			$params = [1, $num, 'rcount'];
86			$content .= '<table style="margin:auto;">
87						<tr>
88						<td>' . $stats->commonGivenFemaleTable($params) . '</td>
89						<td>' . $stats->commonGivenMaleTable($params) . '</td>';
90			$content .= '</tr></table>';
91			break;
92		}
93		$content .= '</div>';
94
95		if ($template) {
96			if ($num == 1) {
97				// I18N: i.e. most popular given name.
98				$title = I18N::translate('Top given name');
99			} else {
100				// I18N: Title for a list of the most common given names, %s is a number. Note that a separate translation exists when %s is 1
101				$title = I18N::plural('Top %s given name', 'Top %s given names', $num, I18N::number($num));
102			}
103
104			if ($ctype === 'gedcom' && Auth::isManager($WT_TREE) || $ctype === 'user' && Auth::check()) {
105				$config_url = Html::url('block_edit.php', ['block_id' => $block_id, 'ged' => $WT_TREE->getName()]);
106			} else {
107				$config_url = '';
108			}
109
110			return View::make('blocks/template', [
111				'block'      => str_replace('_', '-', $this->getName()),
112				'id'         => $block_id,
113				'config_url' => $config_url,
114				'title'      => $title,
115				'content'    => $content,
116			]);
117		} else {
118			return $content;
119		}
120	}
121
122	/** {@inheritdoc} */
123	public function loadAjax() {
124		return false;
125	}
126
127	/** {@inheritdoc} */
128	public function isUserBlock() {
129		return true;
130	}
131
132	/** {@inheritdoc} */
133	public function isGedcomBlock() {
134		return true;
135	}
136
137	/**
138	 * An HTML form to edit block settings
139	 *
140	 * @param int $block_id
141	 */
142	public function configureBlock($block_id) {
143		if (Filter::postBool('save') && Filter::checkCsrf()) {
144			$this->setBlockSetting($block_id, 'num', Filter::postInteger('num', 1, 10000, 10));
145			$this->setBlockSetting($block_id, 'infoStyle', Filter::post('infoStyle', 'list|table', 'table'));
146		}
147
148		$num       = $this->getBlockSetting($block_id, 'num', '10');
149		$infoStyle = $this->getBlockSetting($block_id, 'infoStyle', 'table');
150
151		?>
152		<div class="form-group row">
153			<label class="col-sm-3 col-form-label" for="num">
154				<?= /* I18N: ... to show in a list */ I18N::translate('Number of given names') ?>
155			</label>
156			<div class="col-sm-9">
157				<input type="text" id="num" name="num" size="2" value="<?= $num ?>">
158			</div>
159		</div>
160
161		<div class="form-group row">
162			<label class="col-sm-3 col-form-label" for="infoStyle">
163				<?= I18N::translate('Presentation style') ?>
164			</label>
165			<div class="col-sm-9">
166				<?= Bootstrap4::select(['list' => I18N::translate('list'), 'table' => I18N::translate('table')], $infoStyle, ['id' => 'infoStyle', 'name' => 'infoStyle']) ?>
167			</div>
168		</div>
169		<?php
170	}
171}
172