diff options
| author | Veit Olschinski <veit@olschinski.de> | 2010-04-05 10:29:41 +0000 |
|---|---|---|
| committer | Veit Olschinski <veit@olschinski.de> | 2010-04-05 10:29:41 +0000 |
| commit | 5bc7b36708d272081ffd2df5658ddf12275447dd (patch) | |
| tree | 7884d88bd634f62d94e0239c911305ac4349dba8 /themes/colors/footer.php | |
| parent | 5dbb23df7f03aeb32c6c5a3fa6139dd479f9c0b4 (diff) | |
| download | webtrees-5bc7b36708d272081ffd2df5658ddf12275447dd.tar.gz webtrees-5bc7b36708d272081ffd2df5658ddf12275447dd.tar.bz2 webtrees-5bc7b36708d272081ffd2df5658ddf12275447dd.zip | |
Diffstat (limited to 'themes/colors/footer.php')
| -rw-r--r-- | themes/colors/footer.php | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/themes/colors/footer.php b/themes/colors/footer.php new file mode 100644 index 0000000000..727a87a151 --- /dev/null +++ b/themes/colors/footer.php @@ -0,0 +1,65 @@ +<?php +/** + * Footer for Colors theme + * + * webtrees: Web based Family History software + * Copyright (C) 2010 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * @package webtrees + * @subpackage Themes + * @version $Id$ + */ + +if (!defined('WT_WEBTREES')) { + header('HTTP/1.0 403 Forbidden'); + exit; +} +//start colors unique code +echo "</div>"; // Close table started in toplinks.html +echo "<br />"; +echo "<div id=\"footer\" class=\"$TEXT_DIRECTION\">"; +echo "\n\t<br /><div align=\"center\" style=\"width:99%;\">"; + + +if(empty($SEARCH_SPIDER)) { ?> + <div class="blanco" ><?php print_user_links(); ?></div> + <div> + <?php print_theme_dropdown(); ?> + <?php print_lang_form(); ?> + </div><br /> +<?php +} + +echo contact_links(); +echo "\n\t<br />"; +echo '<br /><a href="', WT_WEBTREES_URL, '" target="_blank"><img src="', $WT_IMAGE_DIR, '/', $WT_IMAGES['gedview']['other'], '" width="100" border="0" alt="', WT_WEBTREES, WT_USER_IS_ADMIN? (" - " .WT_VERSION_TEXT): "", '" title="', WT_WEBTREES, WT_USER_IS_ADMIN? (" - " .WT_VERSION_TEXT): "", '" /></a><br />'; +echo "\n\t<br />"; + + +if ($SHOW_STATS || WT_DEBUG) { + echo execution_stats(); +} + +if (exists_pending_change()) { + echo "<br />", i18n::translate('Changes have been made to this GEDCOM.'), " <a href=\"javascript:;\" onclick=\"window.open('edit_changes.php', '_blank', 'width=600, height=500, resizable=1, scrollbars=1'); return false;\">", i18n::translate('Accept / Reject Changes'), "</a>\n"; +} +echo "</div>"; +echo "</div> <!-- close div id=\"footer\" -->\n"; +?> |
