// Repositories List // // webtrees: Web based Family History software // Copyright (C) 2014 webtrees development team. // // Derived from PhpGedView // Copyright (C) 2002 to 2009 PGV Development Team. All rights reserved. // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA define('WT_SCRIPT_NAME', 'repolist.php'); require './includes/session.php'; require_once WT_ROOT . 'includes/functions/functions_print_lists.php'; $controller = new WT_Controller_Page(); $controller->setPageTitle(WT_I18N::translate('Repositories')); $controller->pageHeader(); echo '<div id="repolist-page">', '<h2>', WT_I18N::translate('Repositories'), '</h2>'; echo format_repo_table(get_repo_list(WT_GED_ID)); echo '</div>';
echo '<li><a href="#sources-media"><span id="sourcemedia">', WT_I18N::translate('Sources'), '</span></a></li>'; } if ($linked_repo) { echo '<li><a href="#repo-media"><span id="repomedia">', WT_I18N::translate('Repositories'), '</span></a></li>'; } if ($linked_note) { echo '<li><a href="#notes-media"><span id="notemedia">', WT_I18N::translate('Notes'), '</span></a></li>'; } echo '</ul>'; // Individuals linked to this media object if ($linked_indi) { echo '<div id="indi-media">', format_indi_table($linked_indi), '</div>'; } // Families linked to this media object if ($linked_fam) { echo '<div id="fam-media">', format_fam_table($linked_fam), '</div>'; } // Sources linked to this media object if ($linked_sour) { echo '<div id="sources-media">', format_sour_table($linked_sour), '</div>'; } // Repositories linked to this media object if ($linked_repo) { echo '<div id="repo-media">', format_repo_table($linked_repo), '</div>'; } // medias linked to this media object if ($linked_note) { echo '<div id="notes-media">', format_note_table($linked_note), '</div>'; } echo '</div>'; echo '</div>';