diff options
Diffstat (limited to 'themes/clouds/footer.php')
| -rw-r--r-- | themes/clouds/footer.php | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/themes/clouds/footer.php b/themes/clouds/footer.php new file mode 100644 index 0000000000..6a021c419a --- /dev/null +++ b/themes/clouds/footer.php @@ -0,0 +1,55 @@ +<?php +/** + * Footer for Clouds theme + * + * webtrees: Web based Family History software + * Copyright (C) 2010 webtrees development team. + * + * Derived from PhpGedView Cloudy theme + * 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: footer.php 8497 2010-05-28 16:10:46Z lucasz $ + */ + +if (!defined('WT_WEBTREES')) { + header('HTTP/1.0 403 Forbidden'); + exit; +} +//start Clouds unique code +echo "</div>"; // Close table started in toplinks.html +echo "<br />";echo "<br />";echo "<br />"; +echo "<div id=\"footer\" class=\"$TEXT_DIRECTION\">"; +echo "\n\t<br /><div align=\"center\" style=\"width:99%;\">"; +echo contact_links(); +echo "\n\t<br />"; +echo '<br /><a href="', WT_WEBTREES_URL, '" target="_blank"><img src="', $WT_IMAGE_DIR, '/', $WT_IMAGES['webtrees']['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(); +} +echo "\n\t<br />"; +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"; +echo "</div> <!-- close div id=\"rapcontainer\" -->\n"; +?> |
