. */ namespace Fisharebest\Webtrees; use Fisharebest\Webtrees\Controller\IndividualListController; use Fisharebest\Webtrees\Functions\FunctionsPrintLists; require 'includes/session.php'; $controller = new IndividualListController; // We show three different lists: initials, surnames and individuals // Note that the data may contain special chars, such as surname="", $alpha = Filter::get('alpha'); // All surnames beginning with this letter where "@"=unknown and ","=none $surname = Filter::get('surname'); // All indis with this surname $show_all = Filter::get('show_all', 'no|yes', 'no'); // All indis // Long lists can be broken down by given name $show_all_firstnames = Filter::get('show_all_firstnames', 'no|yes', 'no'); if ($show_all_firstnames === 'yes') { $falpha = ''; } else { $falpha = Filter::get('falpha'); // All first names beginning with this letter } $show_marnm = Filter::get('show_marnm', 'no|yes'); switch ($show_marnm) { case 'no': case 'yes': Auth::user()->setPreference('famlist.php_show_marnm', $show_marnm); break; default: $show_marnm = Auth::user()->getPreference('famlist.php_show_marnm'); } // Make sure selections are consistent. // i.e. can’t specify show_all and surname at the same time. if ($show_all === 'yes') { if ($show_all_firstnames === 'yes') { $alpha = ''; $surname = ''; $legend = I18N::translate('All'); $url = '?show_all=yes&ged=' . $controller->tree()->getNameUrl(); $show = 'indi'; } elseif ($falpha) { $alpha = ''; $surname = ''; $legend = I18N::translate('All') . ', ' . Html::escape($falpha) . '…'; $url = '?show_all=yes&ged=' . $controller->tree()->getNameUrl(); $show = 'indi'; } else { $alpha = ''; $surname = ''; $legend = I18N::translate('All'); $url = '?show_all=yes' . '&ged=' . $controller->tree()->getNameUrl(); $show = Filter::get('show', 'surn|indi', 'surn'); } } elseif ($surname) { $alpha = $controller->initialLetter($surname); // so we can highlight the initial letter $show_all = 'no'; if ($surname === '@N.N.') { $legend = I18N::translateContext('Unknown surname', '…'); } else { // The surname parameter is a root/canonical form. // Display it as the actual surname $legend = implode('/', array_keys($controller->surnames($surname, $alpha, $show_marnm === 'yes', true))); } $url = '?surname=' . rawurlencode($surname) . '&ged=' . $controller->tree()->getNameUrl(); switch ($falpha) { case '': break; case '@': $legend .= ', ' . I18N::translateContext('Unknown given name', '…'); $url .= '&falpha=' . rawurlencode($falpha) . '&ged=' . $controller->tree()->getNameUrl(); break; default: $legend .= ', ' . Html::escape($falpha) . '…'; $url .= '&falpha=' . rawurlencode($falpha) . '&ged=' . $controller->tree()->getNameUrl(); break; } $show = 'indi'; // SURN list makes no sense here } elseif ($alpha === '@') { $show_all = 'no'; $legend = I18N::translateContext('Unknown surname', '…'); $url = '?alpha=' . rawurlencode($alpha) . '&ged=' . $controller->tree()->getNameUrl(); $show = 'indi'; // SURN list makes no sense here } elseif ($alpha === ',') { $show_all = 'no'; $legend = I18N::translate('None'); $url = '?alpha=' . rawurlencode($alpha) . '&ged=' . $controller->tree()->getNameUrl(); $show = 'indi'; // SURN list makes no sense here } elseif ($alpha) { $show_all = 'no'; $legend = Html::escape($alpha) . '…'; $url = '?alpha=' . rawurlencode($alpha) . '&ged=' . $controller->tree()->getNameUrl(); $show = Filter::get('show', 'surn|indi', 'surn'); } else { $show_all = 'no'; $legend = '…'; $url = '?ged=' . $controller->tree()->getNameUrl(); $show = 'none'; // Don't show lists until something is chosen } $legend = '' . $legend . ''; $controller ->setPageTitle(I18N::translate('Families') . ' : ' . $legend) ->pageHeader(); ?>

'; // Search spiders don't get an option to show/hide the surname sublists, // nor does it make sense on the all/unknown/surname views if (Session::has('initiated') && $show !== 'none') { if ($show_marnm === 'yes') { echo '

', I18N::translate('Exclude individuals with “%s” as a married name', $legend), '

'; } else { echo '

', I18N::translate('Include individuals with “%s” as a married name', $legend), '

'; } if ($alpha !== '@' && $alpha !== ',' && !$surname) { if ($show === 'surn') { echo '

', I18N::translate('Show the list of individuals'), '

'; } else { echo '

', I18N::translate('Show the list of surnames'), '

'; } } } ?>
surnames($surname, $alpha, $show_marnm === 'yes', true); if ($show === 'surn') { // Show the surname list switch ($controller->tree()->getPreference('SURNAME_LIST_STYLE')) { case 'style1': echo FunctionsPrintLists::surnameList($surns, 3, true, 'famlist.php', $controller->tree()); break; case 'style3': echo FunctionsPrintLists::surnameTagCloud($surns, 'famlist.php', true, $controller->tree()); break; case 'style2': default: echo FunctionsPrintLists::surnameTable($surns, 'famlist.php', $controller->tree()); break; } } else { // Show the list $count = 0; foreach ($surns as $surnames) { foreach ($surnames as $list) { $count += count($list); } } // Don't sublists short lists. if ($count < $controller->tree()->getPreference('SUBLIST_TRIGGER_I')) { $falpha = ''; $show_all_firstnames = 'no'; } else { $givn_initials = $controller->givenAlpha($surname, $alpha, $show_marnm === 'yes', true); // Break long lists by initial letter of given name if ($surname || $show_all === 'yes') { if ($show_all === 'no') { echo '

', I18N::translate('Individuals with surname %s', $legend), '

'; } // Don't show the list until we have some filter criteria $show = ($falpha || $show_all_firstnames === 'yes') ? 'indi' : 'none'; $list = []; echo ''; echo '

', implode(' | ', $list), '

'; } } if ($show === 'indi') { echo FunctionsPrintLists::familyTable($controller->families($surname, $alpha, $falpha, $show_marnm === 'yes')); } } } ?>