xref: /webtrees/app/Module/StoriesModule.php (revision b1b851893f908a11bbd8c076acb7d90170ea3f10)
18c2e8227SGreg Roach<?php
28c2e8227SGreg Roach/**
38c2e8227SGreg Roach * webtrees: online genealogy
46bdf7674SGreg Roach * Copyright (C) 2017 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;
1776692c8bSGreg Roach
180e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth;
1915d603e7SGreg Roachuse Fisharebest\Webtrees\Bootstrap4;
200e62c4b8SGreg Roachuse Fisharebest\Webtrees\Controller\PageController;
210e62c4b8SGreg Roachuse Fisharebest\Webtrees\Database;
220e62c4b8SGreg Roachuse Fisharebest\Webtrees\Filter;
233d7a8a4cSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsEdit;
24cc5ab399SGreg Roachuse Fisharebest\Webtrees\Html;
250e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
260e62c4b8SGreg Roachuse Fisharebest\Webtrees\Individual;
270e62c4b8SGreg Roachuse Fisharebest\Webtrees\Menu;
280e62c4b8SGreg Roachuse Fisharebest\Webtrees\Module;
290e62c4b8SGreg Roachuse Fisharebest\Webtrees\Tree;
308c2e8227SGreg Roach
318c2e8227SGreg Roach/**
328c2e8227SGreg Roach * Class StoriesModule
338c2e8227SGreg Roach */
34e2a378d3SGreg Roachclass StoriesModule extends AbstractModule implements ModuleTabInterface, ModuleConfigInterface, ModuleMenuInterface {
358c2e8227SGreg Roach	/** {@inheritdoc} */
368c2e8227SGreg Roach	public function getTitle() {
378c2e8227SGreg Roach		return /* I18N: Name of a module */ I18N::translate('Stories');
388c2e8227SGreg Roach	}
398c2e8227SGreg Roach
408c2e8227SGreg Roach	/** {@inheritdoc} */
418c2e8227SGreg Roach	public function getDescription() {
428c2e8227SGreg Roach		return /* I18N: Description of the “Stories” module */ I18N::translate('Add narrative stories to individuals in the family tree.');
438c2e8227SGreg Roach	}
448c2e8227SGreg Roach
4576692c8bSGreg Roach	/**
4676692c8bSGreg Roach	 * This is a general purpose hook, allowing modules to respond to routes
4776692c8bSGreg Roach	 * of the form module.php?mod=FOO&mod_action=BAR
4876692c8bSGreg Roach	 *
4976692c8bSGreg Roach	 * @param string $mod_action
5076692c8bSGreg Roach	 */
518c2e8227SGreg Roach	public function modAction($mod_action) {
528c2e8227SGreg Roach		switch ($mod_action) {
538c2e8227SGreg Roach		case 'admin_edit':
548c2e8227SGreg Roach			$this->edit();
558c2e8227SGreg Roach			break;
568c2e8227SGreg Roach		case 'admin_delete':
578c2e8227SGreg Roach			$this->delete();
588c2e8227SGreg Roach			$this->config();
598c2e8227SGreg Roach			break;
608c2e8227SGreg Roach		case 'admin_config':
618c2e8227SGreg Roach			$this->config();
628c2e8227SGreg Roach			break;
638c2e8227SGreg Roach		case 'show_list':
648c2e8227SGreg Roach			$this->showList();
658c2e8227SGreg Roach			break;
668c2e8227SGreg Roach		default:
678c2e8227SGreg Roach			http_response_code(404);
688c2e8227SGreg Roach		}
698c2e8227SGreg Roach	}
708c2e8227SGreg Roach
718c2e8227SGreg Roach	/** {@inheritdoc} */
728c2e8227SGreg Roach	public function getConfigLink() {
73*b1b85189SGreg Roach		return Html::url('module.php', [
74*b1b85189SGreg Roach			'mod'        => $this->getName(),
75*b1b85189SGreg Roach			'mod_action' => 'admin_config',
76*b1b85189SGreg Roach		]);
778c2e8227SGreg Roach	}
788c2e8227SGreg Roach
798c2e8227SGreg Roach	/** {@inheritdoc} */
808c2e8227SGreg Roach	public function defaultTabOrder() {
818c2e8227SGreg Roach		return 55;
828c2e8227SGreg Roach	}
838c2e8227SGreg Roach
848c2e8227SGreg Roach	/** {@inheritdoc} */
858c2e8227SGreg Roach	public function getTabContent() {
864b9ff166SGreg Roach		global $controller, $WT_TREE;
878c2e8227SGreg Roach
888c2e8227SGreg Roach		$block_ids =
898c2e8227SGreg Roach			Database::prepare(
908c2e8227SGreg Roach				"SELECT block_id" .
918c2e8227SGreg Roach				" FROM `##block`" .
928c2e8227SGreg Roach				" WHERE module_name=?" .
938c2e8227SGreg Roach				" AND xref=?" .
948c2e8227SGreg Roach				" AND gedcom_id=?"
9513abd6f3SGreg Roach			)->execute([
968c2e8227SGreg Roach				$this->getName(),
978c2e8227SGreg Roach				$controller->record->getXref(),
98cbc1590aSGreg Roach				$controller->record->getTree()->getTreeId(),
9913abd6f3SGreg Roach			])->fetchOneColumn();
1008c2e8227SGreg Roach
1018c2e8227SGreg Roach		$html = '';
1028c2e8227SGreg Roach		foreach ($block_ids as $block_id) {
1038c2e8227SGreg Roach			// Only show this block for certain languages
104e2a378d3SGreg Roach			$languages = $this->getBlockSetting($block_id, 'languages');
1058c2e8227SGreg Roach			if (!$languages || in_array(WT_LOCALE, explode(',', $languages))) {
106e2a378d3SGreg Roach				$html .= '<div class="story_title descriptionbox center rela">' . $this->getBlockSetting($block_id, 'title') . '</div>';
107e2a378d3SGreg Roach				$html .= '<div class="story_body optionbox">' . $this->getBlockSetting($block_id, 'story_body') . '</div>';
1084b9ff166SGreg Roach				if (Auth::isEditor($WT_TREE)) {
1098c2e8227SGreg Roach					$html .= '<div class="story_edit"><a href="module.php?mod=' . $this->getName() . '&amp;mod_action=admin_edit&amp;block_id=' . $block_id . '">';
110cdc90107SGreg Roach					$html .= I18N::translate('Edit the story') . '</a></div>';
1118c2e8227SGreg Roach				}
1128c2e8227SGreg Roach			}
1138c2e8227SGreg Roach		}
1144b9ff166SGreg Roach		if (Auth::isManager($WT_TREE) && !$html) {
1158c2e8227SGreg Roach			$html .= '<div class="news_title center">' . $this->getTitle() . '</div>';
1168c2e8227SGreg Roach			$html .= '<div><a href="module.php?mod=' . $this->getName() . '&amp;mod_action=admin_edit&amp;xref=' . $controller->record->getXref() . '">';
1178c2e8227SGreg Roach			$html .= I18N::translate('Add a story') . '</a></div><br>';
1188c2e8227SGreg Roach		}
1198c2e8227SGreg Roach
1208c2e8227SGreg Roach		return $html;
1218c2e8227SGreg Roach	}
1228c2e8227SGreg Roach
1238c2e8227SGreg Roach	/** {@inheritdoc} */
1248c2e8227SGreg Roach	public function hasTabContent() {
125cbc1590aSGreg Roach		return $this->getTabContent() != '';
1268c2e8227SGreg Roach	}
1278c2e8227SGreg Roach
1288c2e8227SGreg Roach	/** {@inheritdoc} */
1298c2e8227SGreg Roach	public function isGrayedOut() {
1308c2e8227SGreg Roach		global $controller;
1318c2e8227SGreg Roach
1328c2e8227SGreg Roach		$count_of_stories =
1338c2e8227SGreg Roach			Database::prepare(
1348c2e8227SGreg Roach				"SELECT COUNT(block_id)" .
1358c2e8227SGreg Roach				" FROM `##block`" .
1368c2e8227SGreg Roach				" WHERE module_name=?" .
1378c2e8227SGreg Roach				" AND xref=?" .
1388c2e8227SGreg Roach				" AND gedcom_id=?"
13913abd6f3SGreg Roach			)->execute([
1408c2e8227SGreg Roach				$this->getName(),
1418c2e8227SGreg Roach				$controller->record->getXref(),
142cbc1590aSGreg Roach				$controller->record->getTree()->getTreeId(),
14313abd6f3SGreg Roach			])->fetchOne();
1448c2e8227SGreg Roach
1458c2e8227SGreg Roach		return $count_of_stories == 0;
1468c2e8227SGreg Roach	}
1478c2e8227SGreg Roach
1488c2e8227SGreg Roach	/** {@inheritdoc} */
1498c2e8227SGreg Roach	public function canLoadAjax() {
1508c2e8227SGreg Roach		return false;
1518c2e8227SGreg Roach	}
1528c2e8227SGreg Roach
1538c2e8227SGreg Roach	/** {@inheritdoc} */
1548c2e8227SGreg Roach	public function getPreLoadContent() {
1558c2e8227SGreg Roach		return '';
1568c2e8227SGreg Roach	}
1578c2e8227SGreg Roach
1588c2e8227SGreg Roach	/**
1598c2e8227SGreg Roach	 * Show and process a form to edit a story.
1608c2e8227SGreg Roach	 */
1618c2e8227SGreg Roach	private function edit() {
1624b9ff166SGreg Roach		global $WT_TREE;
1634b9ff166SGreg Roach
1644b9ff166SGreg Roach		if (Auth::isEditor($WT_TREE)) {
1658c2e8227SGreg Roach			if (Filter::postBool('save') && Filter::checkCsrf()) {
1668c2e8227SGreg Roach				$block_id = Filter::postInteger('block_id');
1678c2e8227SGreg Roach				if ($block_id) {
1688c2e8227SGreg Roach					Database::prepare(
1698c2e8227SGreg Roach						"UPDATE `##block` SET gedcom_id=?, xref=? WHERE block_id=?"
17013abd6f3SGreg Roach					)->execute([Filter::postInteger('gedcom_id'), Filter::post('xref', WT_REGEX_XREF), $block_id]);
1718c2e8227SGreg Roach				} else {
1728c2e8227SGreg Roach					Database::prepare(
1738c2e8227SGreg Roach						"INSERT INTO `##block` (gedcom_id, xref, module_name, block_order) VALUES (?, ?, ?, ?)"
17413abd6f3SGreg Roach					)->execute([
1758c2e8227SGreg Roach						Filter::postInteger('gedcom_id'),
1768c2e8227SGreg Roach						Filter::post('xref', WT_REGEX_XREF),
1778c2e8227SGreg Roach						$this->getName(),
178cbc1590aSGreg Roach						0,
17913abd6f3SGreg Roach					]);
1808c2e8227SGreg Roach					$block_id = Database::getInstance()->lastInsertId();
1818c2e8227SGreg Roach				}
182e2a378d3SGreg Roach				$this->setBlockSetting($block_id, 'title', Filter::post('title'));
183e2a378d3SGreg Roach				$this->setBlockSetting($block_id, 'story_body', Filter::post('story_body'));
184c999a340SGreg Roach				$languages = Filter::postArray('lang');
185e2a378d3SGreg Roach				$this->setBlockSetting($block_id, 'languages', implode(',', $languages));
1868c2e8227SGreg Roach				$this->config();
1878c2e8227SGreg Roach			} else {
1888c2e8227SGreg Roach				$block_id = Filter::getInteger('block_id');
1898c2e8227SGreg Roach
1908c2e8227SGreg Roach				$controller = new PageController;
1918c2e8227SGreg Roach				if ($block_id) {
192cdc90107SGreg Roach					$controller->setPageTitle(I18N::translate('Edit the story'));
193e2a378d3SGreg Roach					$title      = $this->getBlockSetting($block_id, 'title');
194e2a378d3SGreg Roach					$story_body = $this->getBlockSetting($block_id, 'story_body');
1958c2e8227SGreg Roach					$xref       = Database::prepare(
1968c2e8227SGreg Roach						"SELECT xref FROM `##block` WHERE block_id=?"
19713abd6f3SGreg Roach					)->execute([$block_id])->fetchOne();
1988c2e8227SGreg Roach				} else {
1998c2e8227SGreg Roach					$controller->setPageTitle(I18N::translate('Add a story'));
2008c2e8227SGreg Roach					$title      = '';
2018c2e8227SGreg Roach					$story_body = '';
2028c2e8227SGreg Roach					$xref       = Filter::get('xref', WT_REGEX_XREF);
2038c2e8227SGreg Roach				}
20415d603e7SGreg Roach				$controller->pageHeader();
2058c2e8227SGreg Roach				if (Module::getModuleByName('ckeditor')) {
2068c2e8227SGreg Roach					CkeditorModule::enableEditor($controller);
2078c2e8227SGreg Roach				}
2088c2e8227SGreg Roach
209691beab6SGreg Roach				$individual = Individual::getInstance($xref, $WT_TREE);
210691beab6SGreg Roach
21115d603e7SGreg Roach				echo Bootstrap4::breadcrumbs([
21215d603e7SGreg Roach					'admin.php'         => I18N::translate('Control panel'),
21315d603e7SGreg Roach					'admin_modules.php' => I18N::translate('Module administration'),
21415d603e7SGreg Roach					'module.php?mod=' . $this->getName() . '&mod_action=admin_config' => $this->getTitle(),
21515d603e7SGreg Roach				], $controller->getPageTitle());
2168c2e8227SGreg Roach				?>
2178c2e8227SGreg Roach
21815d603e7SGreg Roach				<h1><?= $controller->getPageTitle() ?></h1>
2198c2e8227SGreg Roach
22015d603e7SGreg Roach				<form class="form-horizontal" method="post" action="module.php?mod=<?= $this->getName() ?>&amp;mod_action=admin_edit">
22115d603e7SGreg Roach					<?= Filter::getCsrf() ?>
222691beab6SGreg Roach					<input type="hidden" name="save" value="1">
22315d603e7SGreg Roach					<input type="hidden" name="block_id" value="<?= $block_id ?>">
22415d603e7SGreg Roach					<input type="hidden" name="gedcom_id" value="<?= $WT_TREE->getTreeId() ?>">
225691beab6SGreg Roach
22615d603e7SGreg Roach					<div class="row form-group">
22715d603e7SGreg Roach						<label for="title" class="col-sm-3 col-form-label">
22815d603e7SGreg Roach							<?= I18N::translate('Story title') ?>
229691beab6SGreg Roach						</label>
230691beab6SGreg Roach						<div class="col-sm-9">
231cc5ab399SGreg Roach							<input type="text" class="form-control" name="title" id="title" value="<?= Html::escape($title) ?>">
232691beab6SGreg Roach						</div>
233691beab6SGreg Roach					</div>
234691beab6SGreg Roach
23515d603e7SGreg Roach					<div class="row form-group">
23615d603e7SGreg Roach						<label for="story_body" class="col-sm-3 col-form-label">
23715d603e7SGreg Roach							<?= I18N::translate('Story') ?>
238691beab6SGreg Roach						</label>
239691beab6SGreg Roach						<div class="col-sm-9">
240cc5ab399SGreg Roach							<textarea name="story_body" id="story_body" class="html-edit form-control" rows="10"><?= Html::escape($story_body) ?></textarea>
241691beab6SGreg Roach						</div>
242691beab6SGreg Roach					</div>
243691beab6SGreg Roach
24415d603e7SGreg Roach					<div class="row form-group">
24515d603e7SGreg Roach						<label for="xref" class="col-sm-3 col-form-label">
24615d603e7SGreg Roach							<?= I18N::translate('Individual') ?>
247691beab6SGreg Roach						</label>
248691beab6SGreg Roach						<div class="col-sm-9">
24915d603e7SGreg Roach							<input data-autocomplete-type="INDI" type="text" name="xref" id="xref" size="4" value="<?= $xref ?>">
250691beab6SGreg Roach							<?php if ($individual): ?>
25115d603e7SGreg Roach								<?= $individual->formatList('span') ?>
25215d603e7SGreg Roach							<?php endif ?>
253691beab6SGreg Roach						</div>
254691beab6SGreg Roach					</div>
255691beab6SGreg Roach
25615d603e7SGreg Roach					<div class="row form-group">
25715d603e7SGreg Roach						<label for="xref" class="col-sm-3 col-form-label">
25815d603e7SGreg Roach							<?= I18N::translate('Show this block for which languages') ?>
259691beab6SGreg Roach						</label>
260691beab6SGreg Roach						<div class="col-sm-9">
26115d603e7SGreg Roach							<?= FunctionsEdit::editLanguageCheckboxes('lang', explode(',', $this->getBlockSetting($block_id, 'languages'))) ?>
262691beab6SGreg Roach						</div>
263691beab6SGreg Roach					</div>
264691beab6SGreg Roach
26515d603e7SGreg Roach					<div class="row form-group">
26615d603e7SGreg Roach						<div class="offset-sm-3 col-sm-9">
267691beab6SGreg Roach							<button type="submit" class="btn btn-primary">
268691beab6SGreg Roach								<i class="fa fa-check"></i>
26915d603e7SGreg Roach								<?= I18N::translate('save') ?>
270691beab6SGreg Roach							</button>
271691beab6SGreg Roach						</div>
272691beab6SGreg Roach					</div>
273691beab6SGreg Roach
274691beab6SGreg Roach				</form>
275691beab6SGreg Roach				<?php
2768c2e8227SGreg Roach			}
2778c2e8227SGreg Roach		} else {
278bff8dc60SGreg Roach			header('Location: index.php');
2798c2e8227SGreg Roach		}
2808c2e8227SGreg Roach	}
2818c2e8227SGreg Roach
2828c2e8227SGreg Roach	/**
2838c2e8227SGreg Roach	 * Respond to a request to delete a story.
2848c2e8227SGreg Roach	 */
2858c2e8227SGreg Roach	private function delete() {
2864b9ff166SGreg Roach		global $WT_TREE;
2874b9ff166SGreg Roach
2884b9ff166SGreg Roach		if (Auth::isEditor($WT_TREE)) {
2898c2e8227SGreg Roach			$block_id = Filter::getInteger('block_id');
2908c2e8227SGreg Roach
2918c2e8227SGreg Roach			Database::prepare(
2928c2e8227SGreg Roach				"DELETE FROM `##block_setting` WHERE block_id=?"
29313abd6f3SGreg Roach			)->execute([$block_id]);
2948c2e8227SGreg Roach
2958c2e8227SGreg Roach			Database::prepare(
2968c2e8227SGreg Roach				"DELETE FROM `##block` WHERE block_id=?"
29713abd6f3SGreg Roach			)->execute([$block_id]);
2988c2e8227SGreg Roach		} else {
299bff8dc60SGreg Roach			header('Location: index.php');
3008c2e8227SGreg Roach			exit;
3018c2e8227SGreg Roach		}
3028c2e8227SGreg Roach	}
3038c2e8227SGreg Roach
3048c2e8227SGreg Roach	/**
3058c2e8227SGreg Roach	 * The admin view - list, create, edit, delete stories.
3068c2e8227SGreg Roach	 */
3078c2e8227SGreg Roach	private function config() {
30824ec66ceSGreg Roach		global $WT_TREE;
30924ec66ceSGreg Roach
3108c2e8227SGreg Roach		$controller = new PageController;
3118c2e8227SGreg Roach		$controller
3124b9ff166SGreg Roach			->restrictAccess(Auth::isAdmin())
3138c2e8227SGreg Roach			->setPageTitle($this->getTitle())
3148c2e8227SGreg Roach			->pageHeader()
3158c2e8227SGreg Roach			->addInlineJavascript('
31615d603e7SGreg Roach				$("#story_table").dataTable({
3178c2e8227SGreg Roach					' . I18N::datatablesI18N() . ',
3188c2e8227SGreg Roach					autoWidth: false,
3198c2e8227SGreg Roach					paging: true,
3208c2e8227SGreg Roach					pagingType: "full_numbers",
3218c2e8227SGreg Roach					lengthChange: true,
3228c2e8227SGreg Roach					filter: true,
3238c2e8227SGreg Roach					info: true,
3248c2e8227SGreg Roach					sorting: [[0,"asc"]],
3258c2e8227SGreg Roach					columns: [
3268c2e8227SGreg Roach						/* 0-name */ null,
3278c2e8227SGreg Roach						/* 1-NAME */ null,
3288c2e8227SGreg Roach						/* 2-NAME */ { sortable:false },
3298c2e8227SGreg Roach						/* 3-NAME */ { sortable:false }
3308c2e8227SGreg Roach					]
3318c2e8227SGreg Roach				});
3328c2e8227SGreg Roach			');
3338c2e8227SGreg Roach
3348c2e8227SGreg Roach		$stories = Database::prepare(
3358c2e8227SGreg Roach			"SELECT block_id, xref" .
3368c2e8227SGreg Roach			" FROM `##block` b" .
3378c2e8227SGreg Roach			" WHERE module_name=?" .
3388c2e8227SGreg Roach			" AND gedcom_id=?" .
3398c2e8227SGreg Roach			" ORDER BY xref"
34013abd6f3SGreg Roach		)->execute([$this->getName(), $WT_TREE->getTreeId()])->fetchAll();
3418c2e8227SGreg Roach
34215d603e7SGreg Roach		echo Bootstrap4::breadcrumbs([
34315d603e7SGreg Roach			'admin.php'         => I18N::translate('Control panel'),
34415d603e7SGreg Roach			'admin_modules.php' => I18N::translate('Module administration'),
34515d603e7SGreg Roach		], $controller->getPageTitle());
3468c2e8227SGreg Roach		?>
3478c2e8227SGreg Roach
34815d603e7SGreg Roach		<h1><?= $controller->getPageTitle() ?></h1>
3498c2e8227SGreg Roach
3508c2e8227SGreg Roach		<form class="form form-inline">
3518c2e8227SGreg Roach			<label for="ged" class="sr-only">
35215d603e7SGreg Roach				<?= I18N::translate('Family tree') ?>
3538c2e8227SGreg Roach			</label>
35415d603e7SGreg Roach			<input type="hidden" name="mod" value="<?=  $this->getName() ?>">
3558c2e8227SGreg Roach			<input type="hidden" name="mod_action" value="admin_config">
35615d603e7SGreg Roach			<?= Bootstrap4::select(Tree::getNameList(), $WT_TREE->getName(), ['id' => 'ged', 'name' => 'ged']) ?>
35715d603e7SGreg Roach			<input type="submit" class="btn btn-primary" value="<?= I18N::translate('show') ?>">
3588c2e8227SGreg Roach		</form>
3598c2e8227SGreg Roach
3608c2e8227SGreg Roach		<p>
36115d603e7SGreg Roach			<a href="module.php?mod=<?= $this->getName() ?>&amp;mod_action=admin_edit" class="btn btn-default">
3628c2e8227SGreg Roach				<i class="fa fa-plus"></i>
36315d603e7SGreg Roach				<?= I18N::translate('Add a story') ?>
3648c2e8227SGreg Roach			</a>
3658c2e8227SGreg Roach		</p>
3668c2e8227SGreg Roach
36727134781SGreg Roach		<table class="table table-bordered table-sm">
3688c2e8227SGreg Roach			<thead>
3698c2e8227SGreg Roach				<tr>
37015d603e7SGreg Roach					<th><?= I18N::translate('Story title') ?></th>
37115d603e7SGreg Roach					<th><?= I18N::translate('Individual') ?></th>
37215d603e7SGreg Roach					<th><?= I18N::translate('Edit') ?></th>
37315d603e7SGreg Roach					<th><?= I18N::translate('Delete') ?></th>
3748c2e8227SGreg Roach				</tr>
3758c2e8227SGreg Roach			</thead>
3768c2e8227SGreg Roach			<tbody>
3778c2e8227SGreg Roach				<?php foreach ($stories as $story): ?>
3788c2e8227SGreg Roach				<tr>
3798c2e8227SGreg Roach					<td>
380cc5ab399SGreg Roach						<?= Html::escape($this->getBlockSetting($story->block_id, 'title')) ?>
3818c2e8227SGreg Roach					</td>
3828c2e8227SGreg Roach					<td>
38315d603e7SGreg Roach						<?php $individual = Individual::getInstance($story->xref, $WT_TREE) ?>
384691beab6SGreg Roach						<?php if ($individual): ?>
38515d603e7SGreg Roach						<a href="<?= $individual->getHtmlUrl() ?>#tab-stories">
38615d603e7SGreg Roach							<?= $individual->getFullName() ?>
3878c2e8227SGreg Roach						</a>
3888c2e8227SGreg Roach						<?php else: ?>
38915d603e7SGreg Roach							<?= $story->xref ?>
39015d603e7SGreg Roach						<?php endif ?>
3918c2e8227SGreg Roach						</td>
3928c2e8227SGreg Roach						<td>
39315d603e7SGreg Roach							<a href="module.php?mod=<?= $this->getName() ?>&amp;mod_action=admin_edit&amp;block_id=<?= $story->block_id ?>">
39415d603e7SGreg Roach								<i class="fa fa-pencil"></i> <?= I18N::translate('Edit') ?>
3958c2e8227SGreg Roach							</a>
3968c2e8227SGreg Roach						</td>
3978c2e8227SGreg Roach						<td>
3988c2e8227SGreg Roach							<a
39915d603e7SGreg Roach								href="module.php?mod=<?= $this->getName() ?>&amp;mod_action=admin_delete&amp;block_id=<?= $story->block_id ?>"
400cc5ab399SGreg Roach								onclick="return confirm('<?= I18N::translate('Are you sure you want to delete “%s”?', Html::escape($this->getBlockSetting($story->block_id, 'title'))) ?>');"
4018c2e8227SGreg Roach							>
40215d603e7SGreg Roach								<i class="fa fa-trash"></i> <?= I18N::translate('Delete') ?>
4038c2e8227SGreg Roach							</a>
4048c2e8227SGreg Roach					</td>
4058c2e8227SGreg Roach				</tr>
40615d603e7SGreg Roach				<?php endforeach ?>
4078c2e8227SGreg Roach			</tbody>
4088c2e8227SGreg Roach		</table>
4098c2e8227SGreg Roach		<?php
4108c2e8227SGreg Roach	}
4118c2e8227SGreg Roach
4128c2e8227SGreg Roach	/**
4138c2e8227SGreg Roach	 * Show the list of stories
4148c2e8227SGreg Roach	 */
4158c2e8227SGreg Roach	private function showList() {
41624ec66ceSGreg Roach		global $controller, $WT_TREE;
4178c2e8227SGreg Roach
4188c2e8227SGreg Roach		$controller = new PageController;
4198c2e8227SGreg Roach		$controller
4208c2e8227SGreg Roach			->setPageTitle($this->getTitle())
4218c2e8227SGreg Roach			->pageHeader()
4228c2e8227SGreg Roach			->addInlineJavascript('
42315d603e7SGreg Roach				$("#story_table").dataTable({
4248c2e8227SGreg Roach					dom: \'<"H"pf<"dt-clear">irl>t<"F"pl>\',
4258c2e8227SGreg Roach					' . I18N::datatablesI18N() . ',
4268c2e8227SGreg Roach					autoWidth: false,
4278c2e8227SGreg Roach					paging: true,
4288c2e8227SGreg Roach					pagingType: "full_numbers",
4298c2e8227SGreg Roach					lengthChange: true,
4308c2e8227SGreg Roach					filter: true,
4318c2e8227SGreg Roach					info: true,
4328c2e8227SGreg Roach					sorting: [[0,"asc"]],
4338c2e8227SGreg Roach					columns: [
4348c2e8227SGreg Roach						/* 0-name */ null,
4358c2e8227SGreg Roach						/* 1-NAME */ null
4368c2e8227SGreg Roach					]
4378c2e8227SGreg Roach				});
4388c2e8227SGreg Roach			');
4398c2e8227SGreg Roach
4408c2e8227SGreg Roach		$stories = Database::prepare(
4418c2e8227SGreg Roach			"SELECT block_id, xref" .
4428c2e8227SGreg Roach			" FROM `##block` b" .
4438c2e8227SGreg Roach			" WHERE module_name=?" .
4448c2e8227SGreg Roach			" AND gedcom_id=?" .
4458c2e8227SGreg Roach			" ORDER BY xref"
44613abd6f3SGreg Roach		)->execute([$this->getName(), $WT_TREE->getTreeId()])->fetchAll();
4478c2e8227SGreg Roach
44815d603e7SGreg Roach		echo '<h2 class="wt-page-title">', I18N::translate('Stories'), '</h2>';
4498c2e8227SGreg Roach		if (count($stories) > 0) {
4508c2e8227SGreg Roach			echo '<table id="story_table" class="width100">';
4518c2e8227SGreg Roach			echo '<thead><tr>
4528c2e8227SGreg Roach				<th>', I18N::translate('Story title'), '</th>
4538c2e8227SGreg Roach				<th>', I18N::translate('Individual'), '</th>
4548c2e8227SGreg Roach				</tr></thead>
4558c2e8227SGreg Roach				<tbody>';
4568c2e8227SGreg Roach			foreach ($stories as $story) {
45724ec66ceSGreg Roach				$indi        = Individual::getInstance($story->xref, $WT_TREE);
458e2a378d3SGreg Roach				$story_title = $this->getBlockSetting($story->block_id, 'title');
459e2a378d3SGreg Roach				$languages   = $this->getBlockSetting($story->block_id, 'languages');
4608c2e8227SGreg Roach				if (!$languages || in_array(WT_LOCALE, explode(',', $languages))) {
4618c2e8227SGreg Roach					if ($indi) {
4628c2e8227SGreg Roach						if ($indi->canShow()) {
46315d603e7SGreg Roach							echo '<tr><td><a href="' . $indi->getHtmlUrl() . '#tab-stories">' . $story_title . '</a></td><td><a href="' . $indi->getHtmlUrl() . '#tab-stories">' . $indi->getFullName() . '</a></td></tr>';
4648c2e8227SGreg Roach						}
4658c2e8227SGreg Roach					} else {
4668c2e8227SGreg Roach						echo '<tr><td>', $story_title, '</td><td class="error">', $story->xref, '</td></tr>';
4678c2e8227SGreg Roach					}
4688c2e8227SGreg Roach				}
4698c2e8227SGreg Roach			}
4708c2e8227SGreg Roach			echo '</tbody></table>';
4718c2e8227SGreg Roach		}
4728c2e8227SGreg Roach	}
4738c2e8227SGreg Roach
4740ee13198SGreg Roach	/**
4750ee13198SGreg Roach	 * The user can re-order menus. Until they do, they are shown in this order.
4760ee13198SGreg Roach	 *
4770ee13198SGreg Roach	 * @return int
4780ee13198SGreg Roach	 */
4798c2e8227SGreg Roach	public function defaultMenuOrder() {
4808c2e8227SGreg Roach		return 30;
4818c2e8227SGreg Roach	}
4828c2e8227SGreg Roach
4830ee13198SGreg Roach	/**
4840ee13198SGreg Roach	 * What is the default access level for this module?
4850ee13198SGreg Roach	 *
4860ee13198SGreg Roach	 * Some modules are aimed at admins or managers, and are not generally shown to users.
4870ee13198SGreg Roach	 *
4880ee13198SGreg Roach	 * @return int
4890ee13198SGreg Roach	 */
4908c2e8227SGreg Roach	public function defaultAccessLevel() {
4914b9ff166SGreg Roach		return Auth::PRIV_HIDE;
4928c2e8227SGreg Roach	}
4938c2e8227SGreg Roach
4940ee13198SGreg Roach	/**
4950ee13198SGreg Roach	 * A menu, to be added to the main application menu.
4960ee13198SGreg Roach	 *
4970ee13198SGreg Roach	 * @return Menu|null
4980ee13198SGreg Roach	 */
4998c2e8227SGreg Roach	public function getMenu() {
5008c2e8227SGreg Roach		$menu = new Menu($this->getTitle(), 'module.php?mod=' . $this->getName() . '&amp;mod_action=show_list', 'menu-story');
5018c2e8227SGreg Roach
5028c2e8227SGreg Roach		return $menu;
5038c2e8227SGreg Roach	}
5048c2e8227SGreg Roach}
505