summaryrefslogtreecommitdiff
path: root/themes/xenea/templates/personbox_template.php
diff options
context:
space:
mode:
authorVeit Olschinski <veit@olschinski.de>2010-04-05 10:29:41 +0000
committerVeit Olschinski <veit@olschinski.de>2010-04-05 10:29:41 +0000
commit5bc7b36708d272081ffd2df5658ddf12275447dd (patch)
tree7884d88bd634f62d94e0239c911305ac4349dba8 /themes/xenea/templates/personbox_template.php
parent5dbb23df7f03aeb32c6c5a3fa6139dd479f9c0b4 (diff)
downloadwebtrees-5bc7b36708d272081ffd2df5658ddf12275447dd.tar.gz
webtrees-5bc7b36708d272081ffd2df5658ddf12275447dd.tar.bz2
webtrees-5bc7b36708d272081ffd2df5658ddf12275447dd.zip
Diffstat (limited to 'themes/xenea/templates/personbox_template.php')
-rw-r--r--themes/xenea/templates/personbox_template.php65
1 files changed, 65 insertions, 0 deletions
diff --git a/themes/xenea/templates/personbox_template.php b/themes/xenea/templates/personbox_template.php
new file mode 100644
index 0000000000..e6f7904b5f
--- /dev/null
+++ b/themes/xenea/templates/personbox_template.php
@@ -0,0 +1,65 @@
+<?php
+/**
+ * Template for drawing person boxes
+ * This template expects that the following variables will be set
+ * $pid, $boxID, $personlinks, $icons, $title, $GEDCOM, $style,
+ * $name, $classfacts, $genderImage, $BirthDeath, $isF, $outBoxAdd,
+ * $addname, $showid, $float
+ *
+ * webtrees: Web based Family History software
+ * Copyright (C) 2010 webtrees development team.
+ *
+ * Derived from PhpGedView
+ * Copyright (C) 2008 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;
+}
+
+?>
+<div id="I<?php print $boxID; ?>links"
+ style="position: absolute; left: 0px; top: 0px; width: <?php print $lbwidth; ?>px; visibility: hidden; z-index: '100';">
+<?php print $personlinks; ?></div>
+<div id="out-<?php print $boxID; ?>" <?php print $outBoxAdd; ?>>
+<!-- table helps to maintain spacing -->
+<table width="100%" cellspacing="0" cellpadding="0" border="0"><tr><td valign="top">
+ <div id="icons-<?php print $boxID; ?>"
+ style="<?php print $iconsStyleAdd; ?> width: 25px; height: 50px;"><?php print $icons; ?>
+ </div>
+ <?php print $thumbnail; ?>
+ <a onclick="event.cancelBubble = true;"
+ href="individual.php?pid=<?php print $pid; ?>&amp;ged=<?php print $GEDCOM; ?>"
+ title="<?php print $title; ?>">
+ <span id="namedef-<?php print $boxID; ?>" class="name<?php print $style; ?> <?php print $classfacts; ?>">
+ <?php print $name.$addname; ?>
+ </span>
+ <span class="name<?php print $style; ?>"> <?php print $genderImage; ?></span>
+ <?php print $showid; ?> </a>
+ <div id="fontdef-<?php print $boxID; ?>" class="details<?php print $style; ?>">
+ <div id="inout2-<?php print $boxID; ?>" style="display: block;"><?php print $BirthDeath; ?></div>
+ </div>
+ <div id="inout-<?php print $boxID; ?>" style="display: none;">
+ <div id="LOADING-inout-<?php print $boxID; ?>"><?php print i18n::translate('Loading...'); ?></div>
+ </div>
+</td></tr></table>
+</div>