xref: /webtrees/app/Module/YahrzeitModule.php (revision 6d1c803999d2444620a1a560507f653ab973ff5f)
18c2e8227SGreg Roach<?php
28c2e8227SGreg Roach/**
38c2e8227SGreg Roach * webtrees: online genealogy
4369c0ce6SGreg Roach * Copyright (C) 2016 webtrees development team
58c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify
68c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by
78c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or
88c2e8227SGreg Roach * (at your option) any later version.
98c2e8227SGreg Roach * This program is distributed in the hope that it will be useful,
108c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
118c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
128c2e8227SGreg Roach * GNU General Public License for more details.
138c2e8227SGreg Roach * You should have received a copy of the GNU General Public License
148c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
158c2e8227SGreg Roach */
1676692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module;
178c2e8227SGreg Roach
188c2e8227SGreg Roachuse Fisharebest\ExtCalendar\JewishCalendar;
190e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth;
200e62c4b8SGreg Roachuse Fisharebest\Webtrees\Date;
210e62c4b8SGreg Roachuse Fisharebest\Webtrees\Date\GregorianDate;
220e62c4b8SGreg Roachuse Fisharebest\Webtrees\Date\JewishDate;
230e62c4b8SGreg Roachuse Fisharebest\Webtrees\Filter;
243d7a8a4cSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsDb;
253d7a8a4cSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsEdit;
260e62c4b8SGreg Roachuse Fisharebest\Webtrees\GedcomTag;
270e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
280e62c4b8SGreg Roachuse Fisharebest\Webtrees\Theme;
298c2e8227SGreg Roachuse Rhumsaa\Uuid\Uuid;
308c2e8227SGreg Roach
318c2e8227SGreg Roach/**
328c2e8227SGreg Roach * Class YahrzeitModule
338c2e8227SGreg Roach */
34e2a378d3SGreg Roachclass YahrzeitModule extends AbstractModule implements ModuleBlockInterface {
358c2e8227SGreg Roach	/** {@inheritdoc} */
368c2e8227SGreg Roach	public function getTitle() {
378c2e8227SGreg Roach		return /* I18N: Name of a module. Yahrzeiten (the plural of Yahrzeit) are special anniversaries of deaths in the Hebrew faith/calendar. */ I18N::translate('Yahrzeiten');
388c2e8227SGreg Roach	}
398c2e8227SGreg Roach
408c2e8227SGreg Roach	/** {@inheritdoc} */
418c2e8227SGreg Roach	public function getDescription() {
428c2e8227SGreg Roach		return /* I18N: Description of the “Yahrzeiten” module. A “Hebrew death” is a death where the date is recorded in the Hebrew calendar. */ I18N::translate('A list of the Hebrew death anniversaries that will occur in the near future.');
438c2e8227SGreg Roach	}
448c2e8227SGreg Roach
4576692c8bSGreg Roach	/**
4676692c8bSGreg Roach	 * Generate the HTML content of this block.
4776692c8bSGreg Roach	 *
4876692c8bSGreg Roach	 * @param int      $block_id
4976692c8bSGreg Roach	 * @param bool     $template
50727f238cSGreg Roach	 * @param string[] $cfg
5176692c8bSGreg Roach	 *
5276692c8bSGreg Roach	 * @return string
5376692c8bSGreg Roach	 */
5476692c8bSGreg Roach	public function getBlock($block_id, $template = true, $cfg = array()) {
554b9ff166SGreg Roach		global $ctype, $controller, $WT_TREE;
568c2e8227SGreg Roach
57e2a378d3SGreg Roach		$days      = $this->getBlockSetting($block_id, 'days', '7');
58e2a378d3SGreg Roach		$infoStyle = $this->getBlockSetting($block_id, 'infoStyle', 'table');
59e2a378d3SGreg Roach		$calendar  = $this->getBlockSetting($block_id, 'calendar', 'jewish');
60e2a378d3SGreg Roach		$block     = $this->getBlockSetting($block_id, 'block', '1');
618c2e8227SGreg Roach
628c2e8227SGreg Roach		foreach (array('days', 'infoStyle', 'block') as $name) {
638c2e8227SGreg Roach			if (array_key_exists($name, $cfg)) {
648c2e8227SGreg Roach				$$name = $cfg[$name];
658c2e8227SGreg Roach			}
668c2e8227SGreg Roach		}
678c2e8227SGreg Roach
688c2e8227SGreg Roach		$startjd = WT_CLIENT_JD;
698c2e8227SGreg Roach		$endjd   = WT_CLIENT_JD + $days - 1;
708c2e8227SGreg Roach
718c2e8227SGreg Roach		$id    = $this->getName() . $block_id;
728c2e8227SGreg Roach		$class = $this->getName() . '_block';
734b9ff166SGreg Roach		if ($ctype === 'gedcom' && Auth::isManager($WT_TREE) || $ctype === 'user' && Auth::check()) {
74*6d1c8039SGreg Roach			$title = '<a class="icon-admin" title="' . I18N::translate('Preferences') . '" href="block_edit.php?block_id=' . $block_id . '&amp;ged=' . $WT_TREE->getNameHtml() . '&amp;ctype=' . $ctype . '"></a>';
758c2e8227SGreg Roach		} else {
768c2e8227SGreg Roach			$title = '';
778c2e8227SGreg Roach		}
788c2e8227SGreg Roach		$title .= $this->getTitle();
798c2e8227SGreg Roach
808c2e8227SGreg Roach		$content = '';
818c2e8227SGreg Roach		// The standard anniversary rules cover most of the Yahrzeit rules, we just
828c2e8227SGreg Roach		// need to handle a few special cases.
838c2e8227SGreg Roach		// Fetch normal anniversaries...
848c2e8227SGreg Roach		$yahrzeits = array();
858c2e8227SGreg Roach		for ($jd = $startjd - 1; $jd <= $endjd + $days; ++$jd) {
863d7a8a4cSGreg Roach			foreach (FunctionsDb::getAnniversaryEvents($jd, 'DEAT _YART', $WT_TREE) as $fact) {
878c2e8227SGreg Roach				// Exact hebrew dates only
888c2e8227SGreg Roach				$date = $fact->getDate();
898c2e8227SGreg Roach				if ($date->minimumDate() instanceof JewishDate && $date->minimumJulianDay() === $date->maximumJulianDay()) {
908c2e8227SGreg Roach					$fact->jd    = $jd;
918c2e8227SGreg Roach					$yahrzeits[] = $fact;
928c2e8227SGreg Roach				}
938c2e8227SGreg Roach			}
948c2e8227SGreg Roach		}
958c2e8227SGreg Roach
968c2e8227SGreg Roach		// ...then adjust dates
978c2e8227SGreg Roach		$jewish_calendar = new JewishCalendar;
988c2e8227SGreg Roach
998c2e8227SGreg Roach		foreach ($yahrzeits as $yahrzeit) {
1008c2e8227SGreg Roach			if ($yahrzeit->getTag() === 'DEAT') {
1018c2e8227SGreg Roach				$today = new JewishDate($yahrzeit->jd);
1028a22d202SGreg Roach				$hd    = $yahrzeit->getDate()->minimumDate();
1038c2e8227SGreg Roach				$hd1   = new JewishDate($hd);
1048c2e8227SGreg Roach				$hd1->y += 1;
1058c2e8227SGreg Roach				$hd1->setJdFromYmd();
1068c2e8227SGreg Roach				// Special rules. See http://www.hebcal.com/help/anniv.html
1078c2e8227SGreg Roach				// Everything else is taken care of by our standard anniversary rules.
1088c2e8227SGreg Roach				if ($hd->d == 30 && $hd->m == 2 && $hd->y != 0 && $hd1->daysInMonth() < 30) {
1098c2e8227SGreg Roach					// 30 CSH - Last day in CSH
1108c2e8227SGreg Roach					$yahrzeit->jd = $jewish_calendar->ymdToJd($today->y, 3, 1) - 1;
1118c2e8227SGreg Roach				} elseif ($hd->d == 30 && $hd->m == 3 && $hd->y != 0 && $hd1->daysInMonth() < 30) {
1128c2e8227SGreg Roach					// 30 KSL - Last day in KSL
1138c2e8227SGreg Roach					$yahrzeit->jd = $jewish_calendar->ymdToJd($today->y, 4, 1) - 1;
1148c2e8227SGreg Roach				} elseif ($hd->d == 30 && $hd->m == 6 && $hd->y != 0 && $today->daysInMonth() < 30 && !$today->isLeapYear()) {
1158c2e8227SGreg Roach					// 30 ADR - Last day in SHV
1168c2e8227SGreg Roach					$yahrzeit->jd = $jewish_calendar->ymdToJd($today->y, 6, 1) - 1;
1178c2e8227SGreg Roach				}
1188c2e8227SGreg Roach			}
1198c2e8227SGreg Roach		}
1208c2e8227SGreg Roach
1218c2e8227SGreg Roach		switch ($infoStyle) {
1228c2e8227SGreg Roach		case 'list':
1238c2e8227SGreg Roach			foreach ($yahrzeits as $yahrzeit) {
1248c2e8227SGreg Roach				if ($yahrzeit->jd >= $startjd && $yahrzeit->jd < $startjd + $days) {
1258c2e8227SGreg Roach					$ind = $yahrzeit->getParent();
1268c2e8227SGreg Roach					$content .= "<a href=\"" . $ind->getHtmlUrl() . "\" class=\"list_item name2\">" . $ind->getFullName() . "</a>" . $ind->getSexImage();
1278c2e8227SGreg Roach					$content .= "<div class=\"indent\">";
1288c2e8227SGreg Roach					$content .= $yahrzeit->getDate()->display(true);
1298c2e8227SGreg Roach					$content .= ', ' . I18N::translate('%s year anniversary', $yahrzeit->anniv);
1308c2e8227SGreg Roach					$content .= "</div>";
1318c2e8227SGreg Roach				}
1328c2e8227SGreg Roach			}
1338c2e8227SGreg Roach			break;
1348c2e8227SGreg Roach		case 'table':
1358c2e8227SGreg Roach		default:
1368c2e8227SGreg Roach			$table_id = Uuid::uuid4(); // table requires a unique ID
1378c2e8227SGreg Roach			$controller
1388c2e8227SGreg Roach				->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL)
1398c2e8227SGreg Roach				->addInlineJavascript('
1408c2e8227SGreg Roach					jQuery("#' . $table_id . '").dataTable({
1418c2e8227SGreg Roach						dom: \'t\',
1428c2e8227SGreg Roach						' . I18N::datatablesI18N() . ',
1438c2e8227SGreg Roach						autoWidth: false,
1448c2e8227SGreg Roach						paginate: false,
1458c2e8227SGreg Roach						lengthChange: false,
1468c2e8227SGreg Roach						filter: false,
1478c2e8227SGreg Roach						info: true,
1488c2e8227SGreg Roach						jQueryUI: true,
1498c2e8227SGreg Roach						sorting: [[5,"asc"]],
1508c2e8227SGreg Roach						columns: [
1518c2e8227SGreg Roach							/* 0-name */ { dataSort: 1 },
1528c2e8227SGreg Roach							/* 1-NAME */ { visible: false },
1538c2e8227SGreg Roach							/* 2-date */ { dataSort: 3 },
1548c2e8227SGreg Roach							/* 3-DATE */ { visible: false },
1558c2e8227SGreg Roach							/* 4-Aniv */ { class: "center"},
1568c2e8227SGreg Roach							/* 5-yart */ { dataSort: 6 },
1578c2e8227SGreg Roach							/* 6-YART */ { visible: false }
1588c2e8227SGreg Roach						]
1598c2e8227SGreg Roach					});
1608c2e8227SGreg Roach					jQuery("#' . $table_id . '").css("visibility", "visible");
1618c2e8227SGreg Roach					jQuery(".loading-image").css("display", "none");
1628c2e8227SGreg Roach				');
1638c2e8227SGreg Roach			$content = '';
1648c2e8227SGreg Roach			$content .= '<div class="loading-image">&nbsp;</div>';
1658c2e8227SGreg Roach			$content .= '<table id="' . $table_id . '" class="width100" style="visibility:hidden;">';
1668c2e8227SGreg Roach			$content .= '<thead><tr>';
167764a01d9SGreg Roach			$content .= '<th>' . GedcomTag::getLabel('NAME') . '</th>';
168764a01d9SGreg Roach			$content .= '<th>' . GedcomTag::getLabel('NAME') . '</th>';
169764a01d9SGreg Roach			$content .= '<th>' . GedcomTag::getLabel('DEAT') . '</th>';
1708c2e8227SGreg Roach			$content .= '<th>DEAT</th>';
1718c2e8227SGreg Roach			$content .= '<th><i class="icon-reminder" title="' . I18N::translate('Anniversary') . '"></i></th>';
172764a01d9SGreg Roach			$content .= '<th>' . GedcomTag::getLabel('_YART') . '</th>';
1738c2e8227SGreg Roach			$content .= '<th>_YART</th>';
1748c2e8227SGreg Roach			$content .= '</tr></thead><tbody>';
1758c2e8227SGreg Roach
1768c2e8227SGreg Roach			foreach ($yahrzeits as $yahrzeit) {
1778c2e8227SGreg Roach				if ($yahrzeit->jd >= $startjd && $yahrzeit->jd < $startjd + $days) {
1788c2e8227SGreg Roach					$content .= '<tr>';
1798c2e8227SGreg Roach					$ind = $yahrzeit->getParent();
1808c2e8227SGreg Roach					// Individual name(s)
1818c2e8227SGreg Roach					$name = $ind->getFullName();
1828c2e8227SGreg Roach					$url  = $ind->getHtmlUrl();
1838c2e8227SGreg Roach					$content .= '<td>';
1848c2e8227SGreg Roach					$content .= '<a href="' . $url . '">' . $name . '</a>';
1858c2e8227SGreg Roach					$content .= $ind->getSexImage();
1868c2e8227SGreg Roach					$addname = $ind->getAddName();
1878c2e8227SGreg Roach					if ($addname) {
1888c2e8227SGreg Roach						$content .= '<br><a href="' . $url . '">' . $addname . '</a>';
1898c2e8227SGreg Roach					}
1908c2e8227SGreg Roach					$content .= '</td>';
1918c2e8227SGreg Roach					$content .= '<td>' . $ind->getSortName() . '</td>';
1928c2e8227SGreg Roach
1938c2e8227SGreg Roach					// death/yahrzeit event date
1948c2e8227SGreg Roach					$content .= '<td>' . $yahrzeit->getDate()->display() . '</td>';
1958c2e8227SGreg Roach					$content .= '<td>' . $yahrzeit->getDate()->julianDay() . '</td>'; // sortable date
1968c2e8227SGreg Roach
1978c2e8227SGreg Roach					// Anniversary
1988c2e8227SGreg Roach					$content .= '<td>' . $yahrzeit->anniv . '</td>';
1998c2e8227SGreg Roach
2008c2e8227SGreg Roach					// upcomming yahrzeit dates
2018c2e8227SGreg Roach					switch ($calendar) {
2028c2e8227SGreg Roach					case 'gregorian':
2038c2e8227SGreg Roach						$today = new GregorianDate($yahrzeit->jd);
2048c2e8227SGreg Roach						break;
2058c2e8227SGreg Roach					case 'jewish':
2068c2e8227SGreg Roach					default:
2078c2e8227SGreg Roach						$today = new JewishDate($yahrzeit->jd);
2088c2e8227SGreg Roach						break;
2098c2e8227SGreg Roach					}
2108c2e8227SGreg Roach					$td = new Date($today->format('%@ %A %O %E'));
2118c2e8227SGreg Roach					$content .= '<td>' . $td->display() . '</td>';
2128c2e8227SGreg Roach					$content .= '<td>' . $td->julianDay() . '</td>'; // sortable date
2138c2e8227SGreg Roach
2148c2e8227SGreg Roach					$content .= '</tr>';
2158c2e8227SGreg Roach				}
2168c2e8227SGreg Roach			}
2178c2e8227SGreg Roach			$content .= '</tbody></table>';
2188c2e8227SGreg Roach
2198c2e8227SGreg Roach			break;
2208c2e8227SGreg Roach		}
2218c2e8227SGreg Roach
2228c2e8227SGreg Roach		if ($template) {
2238c2e8227SGreg Roach			if ($block) {
2248c2e8227SGreg Roach				$class .= ' small_inner_block';
2258c2e8227SGreg Roach			}
226cbc1590aSGreg Roach
2278c2e8227SGreg Roach			return Theme::theme()->formatBlock($id, $title, $class, $content);
2288c2e8227SGreg Roach		} else {
2298c2e8227SGreg Roach			return $content;
2308c2e8227SGreg Roach		}
2318c2e8227SGreg Roach	}
2328c2e8227SGreg Roach
2338c2e8227SGreg Roach	/** {@inheritdoc} */
2348c2e8227SGreg Roach	public function loadAjax() {
2358c2e8227SGreg Roach		return true;
2368c2e8227SGreg Roach	}
2378c2e8227SGreg Roach
2388c2e8227SGreg Roach	/** {@inheritdoc} */
2398c2e8227SGreg Roach	public function isUserBlock() {
2408c2e8227SGreg Roach		return true;
2418c2e8227SGreg Roach	}
2428c2e8227SGreg Roach
2438c2e8227SGreg Roach	/** {@inheritdoc} */
2448c2e8227SGreg Roach	public function isGedcomBlock() {
2458c2e8227SGreg Roach		return true;
2468c2e8227SGreg Roach	}
2478c2e8227SGreg Roach
24876692c8bSGreg Roach	/**
24976692c8bSGreg Roach	 * An HTML form to edit block settings
25076692c8bSGreg Roach	 *
25176692c8bSGreg Roach	 * @param int $block_id
25276692c8bSGreg Roach	 */
2538c2e8227SGreg Roach	public function configureBlock($block_id) {
2548c2e8227SGreg Roach		if (Filter::postBool('save') && Filter::checkCsrf()) {
255e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'days', Filter::postInteger('days', 1, 30, 7));
256e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'infoStyle', Filter::post('infoStyle', 'list|table', 'table'));
257e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'calendar', Filter::post('calendar', 'jewish|gregorian', 'jewish'));
258e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'block', Filter::postBool('block'));
2598c2e8227SGreg Roach		}
2608c2e8227SGreg Roach
261e2a378d3SGreg Roach		$days      = $this->getBlockSetting($block_id, 'days', '7');
262e2a378d3SGreg Roach		$infoStyle = $this->getBlockSetting($block_id, 'infoStyle', 'table');
263e2a378d3SGreg Roach		$calendar  = $this->getBlockSetting($block_id, 'calendar', 'jewish');
264e2a378d3SGreg Roach		$block     = $this->getBlockSetting($block_id, 'block', '1');
2658c2e8227SGreg Roach
2668c2e8227SGreg Roach		echo '<tr><td class="descriptionbox wrap width33">';
2678c2e8227SGreg Roach		echo I18N::translate('Number of days to show');
2688c2e8227SGreg Roach		echo '</td><td class="optionbox">';
2698c2e8227SGreg Roach		echo '<input type="text" name="days" size="2" value="' . $days . '">';
270def7396fSGreg Roach		echo ' <em>', I18N::plural('maximum %s day', 'maximum %s days', 30, I18N::number(30)), '</em>';
2718c2e8227SGreg Roach		echo '</td></tr>';
2728c2e8227SGreg Roach
2738c2e8227SGreg Roach		echo '<tr><td class="descriptionbox wrap width33">';
2748c2e8227SGreg Roach		echo I18N::translate('Presentation style');
2758c2e8227SGreg Roach		echo '</td><td class="optionbox">';
2763d7a8a4cSGreg Roach		echo FunctionsEdit::selectEditControl('infoStyle', array('list' => I18N::translate('list'), 'table' => I18N::translate('table')), null, $infoStyle, '');
2778c2e8227SGreg Roach		echo '</td></tr>';
2788c2e8227SGreg Roach
2798c2e8227SGreg Roach		echo '<tr><td class="descriptionbox wrap width33">';
2808c2e8227SGreg Roach		echo I18N::translate('Calendar');
2818c2e8227SGreg Roach		echo '</td><td class="optionbox">';
2823d7a8a4cSGreg Roach		echo FunctionsEdit::selectEditControl('calendar', array(
2834e6225d5SGreg Roach			'jewish'    => /* I18N: The Hebrew/Jewish calendar */ I18N::translate('Jewish'),
2844e6225d5SGreg Roach			'gregorian' => /* I18N: The gregorian calendar */ I18N::translate('Gregorian'),
2858c2e8227SGreg Roach		), null, $calendar, '');
2868c2e8227SGreg Roach		echo '</td></tr>';
2878c2e8227SGreg Roach
2888c2e8227SGreg Roach		echo '<tr><td class="descriptionbox wrap width33">';
2898c2e8227SGreg Roach		echo /* I18N: label for a yes/no option */ I18N::translate('Add a scrollbar when block contents grow');
2908c2e8227SGreg Roach		echo '</td><td class="optionbox">';
2913d7a8a4cSGreg Roach		echo FunctionsEdit::editFieldYesNo('block', $block);
2928c2e8227SGreg Roach		echo '</td></tr>';
2938c2e8227SGreg Roach	}
2948c2e8227SGreg Roach}
295