xref: /webtrees/app/Module/UpcomingAnniversariesModule.php (revision e2a378d30d9bd3fff591da7a11c7cb5ead502323)
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 UpcomingAnniversariesModule
218c2e8227SGreg Roach */
22*e2a378d3SGreg Roachclass UpcomingAnniversariesModule extends AbstractModule implements ModuleBlockInterface {
238c2e8227SGreg Roach	/** {@inheritdoc} */
248c2e8227SGreg Roach	public function getTitle() {
258c2e8227SGreg Roach		return /* I18N: Name of a module */ I18N::translate('Upcoming events');
268c2e8227SGreg Roach	}
278c2e8227SGreg Roach
288c2e8227SGreg Roach	/** {@inheritdoc} */
298c2e8227SGreg Roach	public function getDescription() {
308c2e8227SGreg Roach		return /* I18N: Description of the “Upcoming events” module */ I18N::translate('A list of the anniversaries that will occur in the near future.');
318c2e8227SGreg Roach	}
328c2e8227SGreg Roach
338c2e8227SGreg Roach	/** {@inheritdoc} */
348c2e8227SGreg Roach	public function getBlock($block_id, $template = true, $cfg = null) {
354b9ff166SGreg Roach		global $ctype, $WT_TREE;
368c2e8227SGreg Roach
37*e2a378d3SGreg Roach		$days      = $this->getBlockSetting($block_id, 'days', '7');
38*e2a378d3SGreg Roach		$filter    = $this->getBlockSetting($block_id, 'filter', '1');
39*e2a378d3SGreg Roach		$onlyBDM   = $this->getBlockSetting($block_id, 'onlyBDM', '0');
40*e2a378d3SGreg Roach		$infoStyle = $this->getBlockSetting($block_id, 'infoStyle', 'table');
41*e2a378d3SGreg Roach		$sortStyle = $this->getBlockSetting($block_id, 'sortStyle', 'alpha');
42*e2a378d3SGreg Roach		$block     = $this->getBlockSetting($block_id, 'block', '1');
438c2e8227SGreg Roach
448c2e8227SGreg Roach		if ($cfg) {
458c2e8227SGreg Roach			foreach (array('days', 'filter', 'onlyBDM', 'infoStyle', 'sortStyle', 'block') as $name) {
468c2e8227SGreg Roach				if (array_key_exists($name, $cfg)) {
478c2e8227SGreg Roach					$$name = $cfg[$name];
488c2e8227SGreg Roach				}
498c2e8227SGreg Roach			}
508c2e8227SGreg Roach		}
518c2e8227SGreg Roach
528c2e8227SGreg Roach		$startjd = WT_CLIENT_JD + 1;
538c2e8227SGreg Roach		$endjd   = WT_CLIENT_JD + $days;
548c2e8227SGreg Roach
558c2e8227SGreg Roach		$id    = $this->getName() . $block_id;
568c2e8227SGreg Roach		$class = $this->getName() . '_block';
574b9ff166SGreg Roach		if ($ctype === 'gedcom' && Auth::isManager($WT_TREE) || $ctype === 'user' && Auth::check()) {
588c2e8227SGreg Roach			$title = '<i class="icon-admin" title="' . I18N::translate('Configure') . '" onclick="modalDialog(\'block_edit.php?block_id=' . $block_id . '\', \'' . $this->getTitle() . '\');"></i>';
598c2e8227SGreg Roach		} else {
608c2e8227SGreg Roach			$title = '';
618c2e8227SGreg Roach		}
628c2e8227SGreg Roach		$title .= $this->getTitle();
638c2e8227SGreg Roach
648c2e8227SGreg Roach		$content = '';
658c2e8227SGreg Roach		switch ($infoStyle) {
668c2e8227SGreg Roach		case 'list':
678c2e8227SGreg Roach			// Output style 1:  Old format, no visible tables, much smaller text.  Better suited to right side of page.
688c2e8227SGreg Roach			$content .= print_events_list($startjd, $endjd, $onlyBDM ? 'BIRT MARR DEAT' : '', $filter, $sortStyle);
698c2e8227SGreg Roach			break;
708c2e8227SGreg Roach		case 'table':
718c2e8227SGreg Roach			// Style 2: New format, tables, big text, etc.  Not too good on right side of page
728c2e8227SGreg Roach			ob_start();
738c2e8227SGreg Roach			$content .= print_events_table($startjd, $endjd, $onlyBDM ? 'BIRT MARR DEAT' : '', $filter, $sortStyle);
748c2e8227SGreg Roach			$content .= ob_get_clean();
758c2e8227SGreg Roach			break;
768c2e8227SGreg Roach		}
778c2e8227SGreg Roach
788c2e8227SGreg Roach		if ($template) {
798c2e8227SGreg Roach			if ($block) {
808c2e8227SGreg Roach				$class .= ' small_inner_block';
818c2e8227SGreg Roach			}
828c2e8227SGreg Roach			return Theme::theme()->formatBlock($id, $title, $class, $content);
838c2e8227SGreg Roach		} else {
848c2e8227SGreg Roach			return $content;
858c2e8227SGreg Roach		}
868c2e8227SGreg Roach	}
878c2e8227SGreg Roach
888c2e8227SGreg Roach	/** {@inheritdoc} */
898c2e8227SGreg Roach	public function loadAjax() {
908c2e8227SGreg Roach		return true;
918c2e8227SGreg Roach	}
928c2e8227SGreg Roach
938c2e8227SGreg Roach	/** {@inheritdoc} */
948c2e8227SGreg Roach	public function isUserBlock() {
958c2e8227SGreg Roach		return true;
968c2e8227SGreg Roach	}
978c2e8227SGreg Roach
988c2e8227SGreg Roach	/** {@inheritdoc} */
998c2e8227SGreg Roach	public function isGedcomBlock() {
1008c2e8227SGreg Roach		return true;
1018c2e8227SGreg Roach	}
1028c2e8227SGreg Roach
1038c2e8227SGreg Roach	/** {@inheritdoc} */
1048c2e8227SGreg Roach	public function configureBlock($block_id) {
1058c2e8227SGreg Roach		if (Filter::postBool('save') && Filter::checkCsrf()) {
106*e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'days', Filter::postInteger('days', 1, 30, 7));
107*e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'filter', Filter::postBool('filter'));
108*e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'onlyBDM', Filter::postBool('onlyBDM'));
109*e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'infoStyle', Filter::post('infoStyle', 'list|table', 'table'));
110*e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'sortStyle', Filter::post('sortStyle', 'alpha|anniv', 'alpha'));
111*e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'block', Filter::postBool('block'));
1128c2e8227SGreg Roach		}
1138c2e8227SGreg Roach
114*e2a378d3SGreg Roach		$days      = $this->getBlockSetting($block_id, 'days', '7');
115*e2a378d3SGreg Roach		$filter    = $this->getBlockSetting($block_id, 'filter', '1');
116*e2a378d3SGreg Roach		$onlyBDM   = $this->getBlockSetting($block_id, 'onlyBDM', '0');
117*e2a378d3SGreg Roach		$infoStyle = $this->getBlockSetting($block_id, 'infoStyle', 'table');
118*e2a378d3SGreg Roach		$sortStyle = $this->getBlockSetting($block_id, 'sortStyle', 'alpha');
119*e2a378d3SGreg Roach		$block     = $this->getBlockSetting($block_id, 'block', '1');
1208c2e8227SGreg Roach
1218c2e8227SGreg Roach		echo '<tr><td class="descriptionbox wrap width33">';
1228c2e8227SGreg Roach		echo I18N::translate('Number of days to show');
1238c2e8227SGreg Roach		echo '</td><td class="optionbox">';
1248c2e8227SGreg Roach		echo '<input type="text" name="days" size="2" value="', $days, '">';
125def7396fSGreg Roach		echo ' <em>', I18N::plural('maximum %s day', 'maximum %s days', 30, I18N::number(30)), '</em>';
1268c2e8227SGreg Roach		echo '</td></tr>';
1278c2e8227SGreg Roach
1288c2e8227SGreg Roach		echo '<tr><td class="descriptionbox wrap width33">';
1298c2e8227SGreg Roach		echo I18N::translate('Show only events of living individuals?');
1308c2e8227SGreg Roach		echo '</td><td class="optionbox">';
1318c2e8227SGreg Roach		echo edit_field_yes_no('filter', $filter);
1328c2e8227SGreg Roach		echo '</td></tr>';
1338c2e8227SGreg Roach
1348c2e8227SGreg Roach		echo '<tr><td class="descriptionbox wrap width33">';
1358c2e8227SGreg Roach		echo I18N::translate('Show only births, deaths, and marriages?');
1368c2e8227SGreg Roach		echo '</td><td class="optionbox">';
1378c2e8227SGreg Roach		echo edit_field_yes_no('onlyBDM', $onlyBDM);
1388c2e8227SGreg Roach		echo '</td></tr>';
1398c2e8227SGreg Roach
1408c2e8227SGreg Roach		echo '<tr><td class="descriptionbox wrap width33">';
1418c2e8227SGreg Roach		echo I18N::translate('Presentation style');
1428c2e8227SGreg Roach		echo '</td><td class="optionbox">';
1438c2e8227SGreg Roach		echo select_edit_control('infoStyle', array('list'=> I18N::translate('list'), 'table'=> I18N::translate('table')), null, $infoStyle, '');
1448c2e8227SGreg Roach		echo '</td></tr>';
1458c2e8227SGreg Roach
1468c2e8227SGreg Roach		echo '<tr><td class="descriptionbox wrap width33">';
1478c2e8227SGreg Roach		echo I18N::translate('Sort order');
1488c2e8227SGreg Roach		echo '</td><td class="optionbox">';
1498c2e8227SGreg Roach		echo select_edit_control('sortStyle', array(
1508c2e8227SGreg Roach			/* I18N: An option in a list-box */ 'alpha'=> I18N::translate('sort by name'),
1518c2e8227SGreg Roach			/* I18N: An option in a list-box */ 'anniv'=> I18N::translate('sort by date'),
1528c2e8227SGreg Roach		), null, $sortStyle, '');
1538c2e8227SGreg Roach		echo '</td></tr>';
1548c2e8227SGreg Roach
1558c2e8227SGreg Roach		echo '<tr><td class="descriptionbox wrap width33">';
1568c2e8227SGreg Roach		echo /* I18N: label for a yes/no option */ I18N::translate('Add a scrollbar when block contents grow');
1578c2e8227SGreg Roach		echo '</td><td class="optionbox">';
1588c2e8227SGreg Roach		echo edit_field_yes_no('block', $block);
1598c2e8227SGreg Roach		echo '</td></tr>';
1608c2e8227SGreg Roach	}
1618c2e8227SGreg Roach}
162