18c2e8227SGreg Roach<?php 28c2e8227SGreg Roach/** 38c2e8227SGreg Roach * webtrees: online genealogy 4369c0ce6SGreg Roach * Copyright (C) 2016 webtrees development team 58c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify 68c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by 78c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or 88c2e8227SGreg Roach * (at your option) any later version. 98c2e8227SGreg Roach * This program is distributed in the hope that it will be useful, 108c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 118c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 128c2e8227SGreg Roach * GNU General Public License for more details. 138c2e8227SGreg Roach * You should have received a copy of the GNU General Public License 148c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 158c2e8227SGreg Roach */ 1676692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module; 1776692c8bSGreg Roach 180e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth; 190e62c4b8SGreg Roachuse Fisharebest\Webtrees\Filter; 203d7a8a4cSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsDb; 213d7a8a4cSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsEdit; 223d7a8a4cSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsPrintLists; 230e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N; 240e62c4b8SGreg Roachuse Fisharebest\Webtrees\Query\QueryName; 250e62c4b8SGreg Roachuse Fisharebest\Webtrees\Theme; 268c2e8227SGreg Roach 278c2e8227SGreg Roach/** 288c2e8227SGreg Roach * Class TopSurnamesModule 298c2e8227SGreg Roach */ 30e2a378d3SGreg Roachclass TopSurnamesModule extends AbstractModule implements ModuleBlockInterface { 3176692c8bSGreg Roach /** 3276692c8bSGreg Roach * How should this module be labelled on tabs, menus, etc.? 3376692c8bSGreg Roach * 3476692c8bSGreg Roach * @return string 3576692c8bSGreg Roach */ 368c2e8227SGreg Roach public function getTitle() { 378c2e8227SGreg Roach return /* I18N: Name of a module. Top=Most common */ I18N::translate('Top surnames'); 388c2e8227SGreg Roach } 398c2e8227SGreg Roach 4076692c8bSGreg Roach /** 4176692c8bSGreg Roach * A sentence describing what this module does. 4276692c8bSGreg Roach * 4376692c8bSGreg Roach * @return string 4476692c8bSGreg Roach */ 458c2e8227SGreg Roach public function getDescription() { 468c2e8227SGreg Roach return /* I18N: Description of the “Top surnames” module */ I18N::translate('A list of the most popular surnames.'); 478c2e8227SGreg Roach } 488c2e8227SGreg Roach 4976692c8bSGreg Roach /** 5076692c8bSGreg Roach * Generate the HTML content of this block. 5176692c8bSGreg Roach * 5276692c8bSGreg Roach * @param int $block_id 5376692c8bSGreg Roach * @param bool $template 54727f238cSGreg Roach * @param string[] $cfg 5576692c8bSGreg Roach * 5676692c8bSGreg Roach * @return string 5776692c8bSGreg Roach */ 5873726173SGreg Roach public function getBlock($block_id, $template = true, $cfg = array()) { 598c2e8227SGreg Roach global $WT_TREE, $ctype; 608c2e8227SGreg Roach 61e2a378d3SGreg Roach $num = $this->getBlockSetting($block_id, 'num', '10'); 62e2a378d3SGreg Roach $infoStyle = $this->getBlockSetting($block_id, 'infoStyle', 'table'); 638c2e8227SGreg Roach 64838cc89dSGreg Roach foreach (array('num', 'infoStyle') as $name) { 658c2e8227SGreg Roach if (array_key_exists($name, $cfg)) { 668c2e8227SGreg Roach $$name = $cfg[$name]; 678c2e8227SGreg Roach } 688c2e8227SGreg Roach } 698c2e8227SGreg Roach 708c2e8227SGreg Roach // This next function is a bit out of date, and doesn't cope well with surname variants 71784e1b4bSGreg Roach $top_surnames = FunctionsDb::getTopSurnames($WT_TREE->getTreeId(), 0, $num); 728c2e8227SGreg Roach 738c2e8227SGreg Roach $all_surnames = array(); 748c2e8227SGreg Roach $i = 0; 758c2e8227SGreg Roach foreach (array_keys($top_surnames) as $top_surname) { 76e06aff55SGreg Roach $all_surnames = array_merge($all_surnames, QueryName::surnames($WT_TREE, $top_surname, '', false, false)); 778c2e8227SGreg Roach if (++$i == $num) { 788c2e8227SGreg Roach break; 798c2e8227SGreg Roach } 808c2e8227SGreg Roach } 818c2e8227SGreg Roach if ($i < $num) { 828c2e8227SGreg Roach $num = $i; 838c2e8227SGreg Roach } 848c2e8227SGreg Roach $id = $this->getName() . $block_id; 858c2e8227SGreg Roach $class = $this->getName() . '_block'; 864b9ff166SGreg Roach if ($ctype === 'gedcom' && Auth::isManager($WT_TREE) || $ctype === 'user' && Auth::check()) { 879353052eSGreg Roach $title = '<a class="icon-admin" title="' . I18N::translate('Configure') . '" href="block_edit.php?block_id=' . $block_id . '&ged=' . $WT_TREE->getNameHtml() . '&ctype=' . $ctype . '"></a>'; 888c2e8227SGreg Roach } else { 898c2e8227SGreg Roach $title = ''; 908c2e8227SGreg Roach } 918c2e8227SGreg Roach 928c2e8227SGreg Roach if ($num == 1) { 938c2e8227SGreg Roach // I18N: i.e. most popular surname. 948c2e8227SGreg Roach $title .= I18N::translate('Top surname'); 958c2e8227SGreg Roach } else { 968c2e8227SGreg Roach // I18N: Title for a list of the most common surnames, %s is a number. Note that a separate translation exists when %s is 1 978c2e8227SGreg Roach $title .= I18N::plural('Top %s surname', 'Top %s surnames', $num, I18N::number($num)); 988c2e8227SGreg Roach } 998c2e8227SGreg Roach 1008c2e8227SGreg Roach switch ($infoStyle) { 1018c2e8227SGreg Roach case 'tagcloud': 1020e62c4b8SGreg Roach uksort($all_surnames, '\Fisharebest\Webtrees\I18N::strcasecmp'); 1033d7a8a4cSGreg Roach $content = FunctionsPrintLists::surnameTagCloud($all_surnames, 'indilist.php', true, $WT_TREE); 1048c2e8227SGreg Roach break; 1058c2e8227SGreg Roach case 'list': 1060e62c4b8SGreg Roach uasort($all_surnames, '\Fisharebest\Webtrees\Module\TopSurnamesModule::surnameCountSort'); 107*f36626dbSGreg Roach $content = FunctionsPrintLists::surnameList($all_surnames, 1, true, 'indilist.php', $WT_TREE); 1088c2e8227SGreg Roach break; 1098c2e8227SGreg Roach case 'array': 1100e62c4b8SGreg Roach uasort($all_surnames, '\Fisharebest\Webtrees\Module\TopSurnamesModule::surnameCountSort'); 111*f36626dbSGreg Roach $content = FunctionsPrintLists::surnameList($all_surnames, 2, true, 'indilist.php', $WT_TREE); 1128c2e8227SGreg Roach break; 1138c2e8227SGreg Roach case 'table': 1148c2e8227SGreg Roach default: 1150e62c4b8SGreg Roach uasort($all_surnames, '\Fisharebest\Webtrees\Module\TopSurnamesModule::surnameCountSort'); 1163d7a8a4cSGreg Roach $content = FunctionsPrintLists::surnameTable($all_surnames, 'indilist.php', $WT_TREE); 1178c2e8227SGreg Roach break; 1188c2e8227SGreg Roach } 1198c2e8227SGreg Roach 1208c2e8227SGreg Roach if ($template) { 1218c2e8227SGreg Roach return Theme::theme()->formatBlock($id, $title, $class, $content); 1228c2e8227SGreg Roach } else { 1238c2e8227SGreg Roach return $content; 1248c2e8227SGreg Roach } 1258c2e8227SGreg Roach } 1268c2e8227SGreg Roach 1278c2e8227SGreg Roach /** {@inheritdoc} */ 1288c2e8227SGreg Roach public function loadAjax() { 1298c2e8227SGreg Roach return true; 1308c2e8227SGreg Roach } 1318c2e8227SGreg Roach 1328c2e8227SGreg Roach /** {@inheritdoc} */ 1338c2e8227SGreg Roach public function isUserBlock() { 1348c2e8227SGreg Roach return true; 1358c2e8227SGreg Roach } 1368c2e8227SGreg Roach 1378c2e8227SGreg Roach /** {@inheritdoc} */ 1388c2e8227SGreg Roach public function isGedcomBlock() { 1398c2e8227SGreg Roach return true; 1408c2e8227SGreg Roach } 1418c2e8227SGreg Roach 14276692c8bSGreg Roach /** 14376692c8bSGreg Roach * An HTML form to edit block settings 14476692c8bSGreg Roach * 14576692c8bSGreg Roach * @param int $block_id 14676692c8bSGreg Roach */ 1478c2e8227SGreg Roach public function configureBlock($block_id) { 1488c2e8227SGreg Roach if (Filter::postBool('save') && Filter::checkCsrf()) { 149e2a378d3SGreg Roach $this->setBlockSetting($block_id, 'num', Filter::postInteger('num', 1, 10000, 10)); 150e2a378d3SGreg Roach $this->setBlockSetting($block_id, 'infoStyle', Filter::post('infoStyle', 'list|array|table|tagcloud', 'table')); 1518c2e8227SGreg Roach } 1528c2e8227SGreg Roach 153e2a378d3SGreg Roach $num = $this->getBlockSetting($block_id, 'num', '10'); 154e2a378d3SGreg Roach $infoStyle = $this->getBlockSetting($block_id, 'infoStyle', 'table'); 1558c2e8227SGreg Roach 1568c2e8227SGreg Roach echo '<tr><td class="descriptionbox wrap width33">'; 157*f36626dbSGreg Roach echo I18N::translate('Number of surnames'); 1588c2e8227SGreg Roach echo '</td><td class="optionbox">'; 1598c2e8227SGreg Roach echo '<input type="text" name="num" size="2" value="', $num, '">'; 1608c2e8227SGreg Roach echo '</td></tr>'; 1618c2e8227SGreg Roach 1628c2e8227SGreg Roach echo '<tr><td class="descriptionbox wrap width33">'; 1638c2e8227SGreg Roach echo I18N::translate('Presentation style'); 1648c2e8227SGreg Roach echo '</td><td class="optionbox">'; 1653d7a8a4cSGreg Roach echo FunctionsEdit::selectEditControl('infoStyle', array('list' => I18N::translate('bullet list'), 'array' => I18N::translate('compact list'), 'table' => I18N::translate('table'), 'tagcloud' => I18N::translate('tag cloud')), null, $infoStyle, ''); 1668c2e8227SGreg Roach echo '</td></tr>'; 1678c2e8227SGreg Roach } 1688c2e8227SGreg Roach 1698c2e8227SGreg Roach /** 1708c2e8227SGreg Roach * Sort (lists of counts of similar) surname by total count. 1718c2e8227SGreg Roach * 1728c2e8227SGreg Roach * @param string[] $a 1738c2e8227SGreg Roach * @param string[] $b 1748c2e8227SGreg Roach * 175cbc1590aSGreg Roach * @return int 1768c2e8227SGreg Roach */ 1778c2e8227SGreg Roach private static function surnameCountSort($a, $b) { 1788c2e8227SGreg Roach $counta = 0; 1798c2e8227SGreg Roach foreach ($a as $x) { 1808c2e8227SGreg Roach $counta += count($x); 1818c2e8227SGreg Roach } 1828c2e8227SGreg Roach $countb = 0; 1838c2e8227SGreg Roach foreach ($b as $x) { 1848c2e8227SGreg Roach $countb += count($x); 1858c2e8227SGreg Roach } 1868c2e8227SGreg Roach 1878c2e8227SGreg Roach return $countb - $counta; 1888c2e8227SGreg Roach } 1898c2e8227SGreg Roach} 190