summaryrefslogtreecommitdiff
path: root/app/Census/CensusOfScotland.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2015-09-25 00:34:06 +0100
committerGreg Roach <fisharebest@gmail.com>2015-09-25 00:34:06 +0100
commit4ccf2a72a960de8375eee0787bc02e7d6dc065eb (patch)
tree3dc783d949e182f97c6402dac719cce50eec566c /app/Census/CensusOfScotland.php
parent8935d8b22a5e5406c862167ae485b4035105851b (diff)
downloadwebtrees-4ccf2a72a960de8375eee0787bc02e7d6dc065eb.tar.gz
webtrees-4ccf2a72a960de8375eee0787bc02e7d6dc065eb.tar.bz2
webtrees-4ccf2a72a960de8375eee0787bc02e7d6dc065eb.zip
Start to refactor census assistant
Diffstat (limited to 'app/Census/CensusOfScotland.php')
-rw-r--r--app/Census/CensusOfScotland.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/app/Census/CensusOfScotland.php b/app/Census/CensusOfScotland.php
new file mode 100644
index 0000000000..efe33eeeb6
--- /dev/null
+++ b/app/Census/CensusOfScotland.php
@@ -0,0 +1,48 @@
+<?php
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2015 webtrees development team
+ * 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 3 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, see <http://www.gnu.org/licenses/>.
+ */
+namespace Fisharebest\Webtrees\Census;
+
+/**
+ * Definitions for a census
+ */
+class CensusOfScotland extends CensusPlace implements CensusPlaceInterface {
+ /**
+ * All available censuses for this census place.
+ *
+ * @return CensusInterface[]
+ */
+ public function allCensusDates() {
+ return array(
+ new CensusOfScotland1841(),
+ new CensusOfScotland1851(),
+ new CensusOfScotland1861(),
+ new CensusOfScotland1871(),
+ new CensusOfScotland1881(),
+ new CensusOfScotland1891(),
+ new CensusOfScotland1901(),
+ new CensusOfScotland1911(),
+ );
+ }
+
+ /**
+ * Where did this census occur, in GEDCOM format.
+ *
+ * @return string
+ */
+ public function censusPlace() {
+ return 'Scotland';
+ }
+}