xref: /webtrees/app/Module/FamilyNavigatorModule.php (revision cbc1590a8c715aa2d88bd745610b899587bd9563)
18c2e8227SGreg Roach<?php
28c2e8227SGreg Roachnamespace Fisharebest\Webtrees;
38c2e8227SGreg Roach
48c2e8227SGreg Roach/**
58c2e8227SGreg Roach * webtrees: online genealogy
68c2e8227SGreg Roach * Copyright (C) 2015 webtrees development team
78c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify
88c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by
98c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or
108c2e8227SGreg Roach * (at your option) any later version.
118c2e8227SGreg Roach * This program is distributed in the hope that it will be useful,
128c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
138c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
148c2e8227SGreg Roach * GNU General Public License for more details.
158c2e8227SGreg Roach * You should have received a copy of the GNU General Public License
168c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
178c2e8227SGreg Roach */
188c2e8227SGreg Roach
198c2e8227SGreg Roach/**
208c2e8227SGreg Roach * Class FamilyNavigatorModule
218c2e8227SGreg Roach */
22e2a378d3SGreg Roachclass FamilyNavigatorModule extends AbstractModule implements ModuleSidebarInterface {
238c2e8227SGreg Roach	const TTL = "<div class='flyout2'>%s</div>";
248c2e8227SGreg Roach	const LNK = "<div class='flyout3' data-href='%s'>%s</div>";
258c2e8227SGreg Roach	const MSG = "<div class='flyout4'>(%s)</div>"; // class flyout4 not used in standard themes
268c2e8227SGreg Roach
278c2e8227SGreg Roach	/** {@inheritdoc} */
288c2e8227SGreg Roach	public function getTitle() {
298c2e8227SGreg Roach		return /* I18N: Name of a module/sidebar */ I18N::translate('Family navigator');
308c2e8227SGreg Roach	}
318c2e8227SGreg Roach
328c2e8227SGreg Roach	/** {@inheritdoc} */
338c2e8227SGreg Roach	public function getDescription() {
348c2e8227SGreg Roach		return /* I18N: Description of the “Family navigator” module */ I18N::translate('A sidebar showing an individual’s close families and relatives.');
358c2e8227SGreg Roach	}
368c2e8227SGreg Roach
378c2e8227SGreg Roach	/** {@inheritdoc} */
388c2e8227SGreg Roach	public function defaultSidebarOrder() {
398c2e8227SGreg Roach		return 20;
408c2e8227SGreg Roach	}
418c2e8227SGreg Roach
428c2e8227SGreg Roach	/** {@inheritdoc} */
438c2e8227SGreg Roach	public function hasSidebarContent() {
448c2e8227SGreg Roach		return !Auth::isSearchEngine();
458c2e8227SGreg Roach	}
468c2e8227SGreg Roach
478c2e8227SGreg Roach	/** {@inheritdoc} */
488c2e8227SGreg Roach	public function getSidebarAjaxContent() {
498c2e8227SGreg Roach		return '';
508c2e8227SGreg Roach	}
518c2e8227SGreg Roach
528c2e8227SGreg Roach	/** {@inheritdoc} */
538c2e8227SGreg Roach	public function getSidebarContent() {
548c2e8227SGreg Roach		global $controller;
558c2e8227SGreg Roach
568c2e8227SGreg Roach		$controller->addInlineJavascript('
578c2e8227SGreg Roach			jQuery("#sb_family_nav_content")
588c2e8227SGreg Roach				.on("click", ".flyout a", function() {
598c2e8227SGreg Roach					return false;
608c2e8227SGreg Roach				})
618c2e8227SGreg Roach				.on("click", ".flyout3", function() {
628c2e8227SGreg Roach					window.location.href = jQuery(this).data("href");
638c2e8227SGreg Roach					return false;
648c2e8227SGreg Roach				});
658c2e8227SGreg Roach		');
668c2e8227SGreg Roach
678c2e8227SGreg Roach		ob_start();
688c2e8227SGreg Roach
698c2e8227SGreg Roach		?>
708c2e8227SGreg Roach		<div id="sb_family_nav_content">
718c2e8227SGreg Roach			<table class="nav_content">
728c2e8227SGreg Roach
738c2e8227SGreg Roach		<?php
748c2e8227SGreg Roach		//-- parent families -------------------------------------------------------------
758c2e8227SGreg Roach		foreach ($controller->record->getChildFamilies() as $family) {
768c2e8227SGreg Roach			$this->drawFamily($family, $controller->record->getChildFamilyLabel($family));
778c2e8227SGreg Roach		}
788c2e8227SGreg Roach		//-- step parents ----------------------------------------------------------------
798c2e8227SGreg Roach		foreach ($controller->record->getChildStepFamilies() as $family) {
808c2e8227SGreg Roach			$this->drawFamily($family, $controller->record->getStepFamilyLabel($family));
818c2e8227SGreg Roach		}
828c2e8227SGreg Roach		//-- spouse and children --------------------------------------------------
838c2e8227SGreg Roach		foreach ($controller->record->getSpouseFamilies() as $family) {
848c2e8227SGreg Roach			$this->drawFamily($family, $controller->record->getSpouseFamilyLabel($family));
858c2e8227SGreg Roach		}
868c2e8227SGreg Roach		//-- step children ----------------------------------------------------------------
878c2e8227SGreg Roach		foreach ($controller->record->getSpouseStepFamilies() as $family) {
888c2e8227SGreg Roach			$this->drawFamily($family, $family->getFullName());
898c2e8227SGreg Roach		}
908c2e8227SGreg Roach		?>
918c2e8227SGreg Roach			</table>
928c2e8227SGreg Roach		</div>
938c2e8227SGreg Roach		<?php
948c2e8227SGreg Roach
958c2e8227SGreg Roach		return ob_get_clean();
968c2e8227SGreg Roach	}
978c2e8227SGreg Roach
988c2e8227SGreg Roach	/**
998c2e8227SGreg Roach	 * @param Family $family
1008c2e8227SGreg Roach	 * @param string $title
1018c2e8227SGreg Roach	 */
1028c2e8227SGreg Roach	private function drawFamily(Family $family, $title) {
1033bb191c1SGreg Roach		global $controller;
1048c2e8227SGreg Roach
1058c2e8227SGreg Roach		?>
1068c2e8227SGreg Roach		<tr>
1078c2e8227SGreg Roach			<td class="center" colspan="2">
1088c2e8227SGreg Roach				<a class="famnav_title" href="<?php echo $family->getHtmlUrl(); ?>">
1098c2e8227SGreg Roach					<?php echo $title; ?>
1108c2e8227SGreg Roach				</a>
1118c2e8227SGreg Roach			</td>
1128c2e8227SGreg Roach		</tr>
1138c2e8227SGreg Roach		<?php
1143bb191c1SGreg Roach		foreach ($family->getSpouses() as $spouse) {
1158c2e8227SGreg Roach			$menu = new Menu(get_close_relationship_name($controller->record, $spouse));
1168c2e8227SGreg Roach			$menu->addClass('', 'submenu flyout');
1178c2e8227SGreg Roach			$menu->addSubmenu(new Menu($this->getParents($spouse)));
1188c2e8227SGreg Roach			?>
1198c2e8227SGreg Roach			<tr>
1208c2e8227SGreg Roach				<td class="facts_label">
1218c2e8227SGreg Roach					<?php echo $menu->getMenu(); ?>
1228c2e8227SGreg Roach				</td>
1238c2e8227SGreg Roach				<td class="center <?php echo $controller->getPersonStyle($spouse); ?> nam">
1248c2e8227SGreg Roach					<a class="famnav_link" href="<?php echo $spouse->getHtmlUrl(); ?>">
1258c2e8227SGreg Roach						<?php echo $spouse->getFullName(); ?>
1268c2e8227SGreg Roach					</a>
1278c2e8227SGreg Roach					<div class="font9">
1288c2e8227SGreg Roach						<?php echo $spouse->getLifeSpan(); ?>
1298c2e8227SGreg Roach					</div>
1308c2e8227SGreg Roach				</td>
1318c2e8227SGreg Roach			</tr>
1328c2e8227SGreg Roach		<?php
1338c2e8227SGreg Roach		}
1348c2e8227SGreg Roach
1353bb191c1SGreg Roach		foreach ($family->getChildren() as $child) {
1368c2e8227SGreg Roach			$menu = new Menu(get_close_relationship_name($controller->record, $child));
1378c2e8227SGreg Roach			$menu->addClass('', 'submenu flyout');
1388c2e8227SGreg Roach			$menu->addSubmenu(new Menu($this->getFamily($child)));
1398c2e8227SGreg Roach			?>
1408c2e8227SGreg Roach			<tr>
1418c2e8227SGreg Roach				<td class="facts_label">
1428c2e8227SGreg Roach					<?php echo $menu->getMenu(); ?>
1438c2e8227SGreg Roach				</td>
1448c2e8227SGreg Roach				<td class="center <?php echo $controller->getPersonStyle($child); ?> nam">
1458c2e8227SGreg Roach					<a class="famnav_link" href="<?php echo $child->getHtmlUrl(); ?>">
1468c2e8227SGreg Roach						<?php echo $child->getFullName(); ?>
1478c2e8227SGreg Roach					</a>
1488c2e8227SGreg Roach					<div class="font9">
1498c2e8227SGreg Roach						<?php echo $child->getLifeSpan(); ?>
1508c2e8227SGreg Roach					</div>
1518c2e8227SGreg Roach				</td>
1528c2e8227SGreg Roach			</tr>
1538c2e8227SGreg Roach		<?php
1548c2e8227SGreg Roach		}
1558c2e8227SGreg Roach	}
1568c2e8227SGreg Roach
1578c2e8227SGreg Roach	/**
1588c2e8227SGreg Roach	 * @param      $person
159*cbc1590aSGreg Roach	 * @param bool $showUnknown
1608c2e8227SGreg Roach	 *
1618c2e8227SGreg Roach	 * @return string
1628c2e8227SGreg Roach	 */
1638c2e8227SGreg Roach	private function getHTML($person, $showUnknown = false) {
1648c2e8227SGreg Roach		if ($person instanceof Individual) {
1658c2e8227SGreg Roach			return sprintf(self::LNK, $person->getHtmlUrl(), $person->getFullName());
1668c2e8227SGreg Roach		} elseif ($showUnknown) {
1678c2e8227SGreg Roach			return sprintf(self::MSG, I18N::translate('unknown'));
1688c2e8227SGreg Roach		} else {
1698c2e8227SGreg Roach			return '';
1708c2e8227SGreg Roach		}
1718c2e8227SGreg Roach	}
1728c2e8227SGreg Roach
1738c2e8227SGreg Roach	/**
1748c2e8227SGreg Roach	 * @param Individual $person
1758c2e8227SGreg Roach	 *
1768c2e8227SGreg Roach	 * @return string
1778c2e8227SGreg Roach	 */
1788c2e8227SGreg Roach	private function getParents(Individual $person) {
1798c2e8227SGreg Roach		$father = null;
1808c2e8227SGreg Roach		$mother = null;
1818c2e8227SGreg Roach		$html   = sprintf(self::TTL, I18N::translate('Parents'));
1828c2e8227SGreg Roach		$family = $person->getPrimaryChildFamily();
1838c2e8227SGreg Roach		if (!Auth::isSearchEngine() && $person->canShowName() && $family !== null) {
1848c2e8227SGreg Roach			$father = $family->getHusband();
1858c2e8227SGreg Roach			$mother = $family->getWife();
1868c2e8227SGreg Roach			$html .= $this->getHTML($father) .
1878c2e8227SGreg Roach					 $this->getHTML($mother);
1888c2e8227SGreg Roach
1898c2e8227SGreg Roach			// Can only have a step parent if one & only one parent found at this point
1908c2e8227SGreg Roach			if ($father instanceof Individual xor $mother instanceof Individual) {
1918c2e8227SGreg Roach				$stepParents = '';
1928c2e8227SGreg Roach				foreach ($person->getChildStepFamilies() as $family) {
1938c2e8227SGreg Roach					if (!$father instanceof Individual) {
1948c2e8227SGreg Roach						$stepParents .= $this->getHTML($family->getHusband());
1958c2e8227SGreg Roach					} else {
1968c2e8227SGreg Roach						$stepParents .= $this->getHTML($family->getWife());
1978c2e8227SGreg Roach					}
1988c2e8227SGreg Roach				}
1998c2e8227SGreg Roach				if ($stepParents) {
2008c2e8227SGreg Roach					$relationship = $father instanceof Individual ?
201764a01d9SGreg Roach						I18N::translateContext("father’s wife", "step-mother") : I18N::translateContext("mother’s husband", "step-father");
2028c2e8227SGreg Roach					$html .= sprintf(self::TTL, $relationship) . $stepParents;
2038c2e8227SGreg Roach				}
2048c2e8227SGreg Roach			}
2058c2e8227SGreg Roach		}
2068c2e8227SGreg Roach		if (!($father instanceof Individual || $mother instanceof Individual)) {
207764a01d9SGreg Roach			$html .= sprintf(self::MSG, I18N::translateContext('unknown family', 'unknown'));
2088c2e8227SGreg Roach		}
209*cbc1590aSGreg Roach
2108c2e8227SGreg Roach		return $html;
2118c2e8227SGreg Roach	}
2128c2e8227SGreg Roach
2138c2e8227SGreg Roach	/**
2148c2e8227SGreg Roach	 * @param Individual $person
2158c2e8227SGreg Roach	 *
2168c2e8227SGreg Roach	 * @return string
2178c2e8227SGreg Roach	 */
2188c2e8227SGreg Roach	private function getFamily(Individual $person) {
2198c2e8227SGreg Roach		$html = '';
2208c2e8227SGreg Roach		if ($person->canShowName() && !Auth::isSearchEngine()) {
2218c2e8227SGreg Roach			foreach ($person->getSpouseFamilies() as $family) {
2228c2e8227SGreg Roach				$spouse = $family->getSpouse($person);
2238c2e8227SGreg Roach				$html .= $this->getHTML($spouse, true);
2248c2e8227SGreg Roach				$children = $family->getChildren();
2258c2e8227SGreg Roach				if (count($children) > 0) {
2268c2e8227SGreg Roach					$html .= "<ul class='clist'>";
2278c2e8227SGreg Roach					foreach ($children as $child) {
2288c2e8227SGreg Roach						$html .= '<li>' . $this->getHTML($child) . '</li>';
2298c2e8227SGreg Roach					}
2308c2e8227SGreg Roach					$html .= '</ul>';
2318c2e8227SGreg Roach				}
2328c2e8227SGreg Roach			}
2338c2e8227SGreg Roach		}
2348c2e8227SGreg Roach		if (!$html) {
2358c2e8227SGreg Roach			$html = sprintf(self::MSG, I18N::translate('none'));
2368c2e8227SGreg Roach		}
237*cbc1590aSGreg Roach
2388c2e8227SGreg Roach		return sprintf(self::TTL, I18N::translate('Family')) . $html;
2398c2e8227SGreg Roach	}
2408c2e8227SGreg Roach
2418c2e8227SGreg Roach}
242