summaryrefslogtreecommitdiff
path: root/includes/classes/class_source.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 /includes/classes/class_source.php
parent5dbb23df7f03aeb32c6c5a3fa6139dd479f9c0b4 (diff)
downloadwebtrees-5bc7b36708d272081ffd2df5658ddf12275447dd.tar.gz
webtrees-5bc7b36708d272081ffd2df5658ddf12275447dd.tar.bz2
webtrees-5bc7b36708d272081ffd2df5658ddf12275447dd.zip
Diffstat (limited to 'includes/classes/class_source.php')
-rw-r--r--includes/classes/class_source.php58
1 files changed, 58 insertions, 0 deletions
diff --git a/includes/classes/class_source.php b/includes/classes/class_source.php
new file mode 100644
index 0000000000..c93a7998a0
--- /dev/null
+++ b/includes/classes/class_source.php
@@ -0,0 +1,58 @@
+<?php
+/**
+ * Class file for a Source (SOUR) object
+ *
+ * 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 DataModel
+ * @version $Id$
+ */
+
+if (!defined('WT_WEBTREES')) {
+ header('HTTP/1.0 403 Forbidden');
+ exit;
+}
+
+define('WT_CLASS_SOURCE_PHP', '');
+
+require_once WT_ROOT.'includes/classes/class_gedcomrecord.php';
+
+class Source extends GedcomRecord {
+ /**
+ * get the author of this source record
+ * @return string
+ */
+ public function getAuth() {
+ return get_gedcom_value('AUTH', 1, $this->gedrec, '', false);
+ }
+
+ // Generate a URL that links to this record
+ public function getLinkUrl() {
+ return parent::_getLinkUrl('source.php?sid=');
+ }
+
+ // Get an array of structures containing all the names in the record
+ public function getAllNames() {
+ return parent::_getAllNames('TITL', 1);
+ }
+}
+?>