xref: /webtrees/app/Module/StoriesModule.php (revision bff8dc608bbc4d35f7c720d8a008a0ca3c766e2d)
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;
240e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
250e62c4b8SGreg Roachuse Fisharebest\Webtrees\Individual;
260e62c4b8SGreg Roachuse Fisharebest\Webtrees\Menu;
270e62c4b8SGreg Roachuse Fisharebest\Webtrees\Module;
280e62c4b8SGreg Roachuse Fisharebest\Webtrees\Tree;
298c2e8227SGreg Roach
308c2e8227SGreg Roach/**
318c2e8227SGreg Roach * Class StoriesModule
328c2e8227SGreg Roach */
33e2a378d3SGreg Roachclass StoriesModule extends AbstractModule implements ModuleTabInterface, ModuleConfigInterface, ModuleMenuInterface {
348c2e8227SGreg Roach	/** {@inheritdoc} */
358c2e8227SGreg Roach	public function getTitle() {
368c2e8227SGreg Roach		return /* I18N: Name of a module */ I18N::translate('Stories');
378c2e8227SGreg Roach	}
388c2e8227SGreg Roach
398c2e8227SGreg Roach	/** {@inheritdoc} */
408c2e8227SGreg Roach	public function getDescription() {
418c2e8227SGreg Roach		return /* I18N: Description of the “Stories” module */ I18N::translate('Add narrative stories to individuals in the family tree.');
428c2e8227SGreg Roach	}
438c2e8227SGreg Roach
4476692c8bSGreg Roach	/**
4576692c8bSGreg Roach	 * This is a general purpose hook, allowing modules to respond to routes
4676692c8bSGreg Roach	 * of the form module.php?mod=FOO&mod_action=BAR
4776692c8bSGreg Roach	 *
4876692c8bSGreg Roach	 * @param string $mod_action
4976692c8bSGreg Roach	 */
508c2e8227SGreg Roach	public function modAction($mod_action) {
518c2e8227SGreg Roach		switch ($mod_action) {
528c2e8227SGreg Roach		case 'admin_edit':
538c2e8227SGreg Roach			$this->edit();
548c2e8227SGreg Roach			break;
558c2e8227SGreg Roach		case 'admin_delete':
568c2e8227SGreg Roach			$this->delete();
578c2e8227SGreg Roach			$this->config();
588c2e8227SGreg Roach			break;
598c2e8227SGreg Roach		case 'admin_config':
608c2e8227SGreg Roach			$this->config();
618c2e8227SGreg Roach			break;
628c2e8227SGreg Roach		case 'show_list':
638c2e8227SGreg Roach			$this->showList();
648c2e8227SGreg Roach			break;
658c2e8227SGreg Roach		default:
668c2e8227SGreg Roach			http_response_code(404);
678c2e8227SGreg Roach		}
688c2e8227SGreg Roach	}
698c2e8227SGreg Roach
708c2e8227SGreg Roach	/** {@inheritdoc} */
718c2e8227SGreg Roach	public function getConfigLink() {
728c2e8227SGreg Roach		return 'module.php?mod=' . $this->getName() . '&amp;mod_action=admin_config';
738c2e8227SGreg Roach	}
748c2e8227SGreg Roach
758c2e8227SGreg Roach	/** {@inheritdoc} */
768c2e8227SGreg Roach	public function defaultTabOrder() {
778c2e8227SGreg Roach		return 55;
788c2e8227SGreg Roach	}
798c2e8227SGreg Roach
808c2e8227SGreg Roach	/** {@inheritdoc} */
818c2e8227SGreg Roach	public function getTabContent() {
824b9ff166SGreg Roach		global $controller, $WT_TREE;
838c2e8227SGreg Roach
848c2e8227SGreg Roach		$block_ids =
858c2e8227SGreg Roach			Database::prepare(
868c2e8227SGreg Roach				"SELECT block_id" .
878c2e8227SGreg Roach				" FROM `##block`" .
888c2e8227SGreg Roach				" WHERE module_name=?" .
898c2e8227SGreg Roach				" AND xref=?" .
908c2e8227SGreg Roach				" AND gedcom_id=?"
9113abd6f3SGreg Roach			)->execute([
928c2e8227SGreg Roach				$this->getName(),
938c2e8227SGreg Roach				$controller->record->getXref(),
94cbc1590aSGreg Roach				$controller->record->getTree()->getTreeId(),
9513abd6f3SGreg Roach			])->fetchOneColumn();
968c2e8227SGreg Roach
978c2e8227SGreg Roach		$html = '';
988c2e8227SGreg Roach		foreach ($block_ids as $block_id) {
998c2e8227SGreg Roach			// Only show this block for certain languages
100e2a378d3SGreg Roach			$languages = $this->getBlockSetting($block_id, 'languages');
1018c2e8227SGreg Roach			if (!$languages || in_array(WT_LOCALE, explode(',', $languages))) {
102e2a378d3SGreg Roach				$html .= '<div class="story_title descriptionbox center rela">' . $this->getBlockSetting($block_id, 'title') . '</div>';
103e2a378d3SGreg Roach				$html .= '<div class="story_body optionbox">' . $this->getBlockSetting($block_id, 'story_body') . '</div>';
1044b9ff166SGreg Roach				if (Auth::isEditor($WT_TREE)) {
1058c2e8227SGreg Roach					$html .= '<div class="story_edit"><a href="module.php?mod=' . $this->getName() . '&amp;mod_action=admin_edit&amp;block_id=' . $block_id . '">';
106cdc90107SGreg Roach					$html .= I18N::translate('Edit the story') . '</a></div>';
1078c2e8227SGreg Roach				}
1088c2e8227SGreg Roach			}
1098c2e8227SGreg Roach		}
1104b9ff166SGreg Roach		if (Auth::isManager($WT_TREE) && !$html) {
1118c2e8227SGreg Roach			$html .= '<div class="news_title center">' . $this->getTitle() . '</div>';
1128c2e8227SGreg Roach			$html .= '<div><a href="module.php?mod=' . $this->getName() . '&amp;mod_action=admin_edit&amp;xref=' . $controller->record->getXref() . '">';
1138c2e8227SGreg Roach			$html .= I18N::translate('Add a story') . '</a></div><br>';
1148c2e8227SGreg Roach		}
1158c2e8227SGreg Roach
1168c2e8227SGreg Roach		return $html;
1178c2e8227SGreg Roach	}
1188c2e8227SGreg Roach
1198c2e8227SGreg Roach	/** {@inheritdoc} */
1208c2e8227SGreg Roach	public function hasTabContent() {
121cbc1590aSGreg Roach		return $this->getTabContent() != '';
1228c2e8227SGreg Roach	}
1238c2e8227SGreg Roach
1248c2e8227SGreg Roach	/** {@inheritdoc} */
1258c2e8227SGreg Roach	public function isGrayedOut() {
1268c2e8227SGreg Roach		global $controller;
1278c2e8227SGreg Roach
1288c2e8227SGreg Roach		$count_of_stories =
1298c2e8227SGreg Roach			Database::prepare(
1308c2e8227SGreg Roach				"SELECT COUNT(block_id)" .
1318c2e8227SGreg Roach				" FROM `##block`" .
1328c2e8227SGreg Roach				" WHERE module_name=?" .
1338c2e8227SGreg Roach				" AND xref=?" .
1348c2e8227SGreg Roach				" AND gedcom_id=?"
13513abd6f3SGreg Roach			)->execute([
1368c2e8227SGreg Roach				$this->getName(),
1378c2e8227SGreg Roach				$controller->record->getXref(),
138cbc1590aSGreg Roach				$controller->record->getTree()->getTreeId(),
13913abd6f3SGreg Roach			])->fetchOne();
1408c2e8227SGreg Roach
1418c2e8227SGreg Roach		return $count_of_stories == 0;
1428c2e8227SGreg Roach	}
1438c2e8227SGreg Roach
1448c2e8227SGreg Roach	/** {@inheritdoc} */
1458c2e8227SGreg Roach	public function canLoadAjax() {
1468c2e8227SGreg Roach		return false;
1478c2e8227SGreg Roach	}
1488c2e8227SGreg Roach
1498c2e8227SGreg Roach	/** {@inheritdoc} */
1508c2e8227SGreg Roach	public function getPreLoadContent() {
1518c2e8227SGreg Roach		return '';
1528c2e8227SGreg Roach	}
1538c2e8227SGreg Roach
1548c2e8227SGreg Roach	/**
1558c2e8227SGreg Roach	 * Show and process a form to edit a story.
1568c2e8227SGreg Roach	 */
1578c2e8227SGreg Roach	private function edit() {
1584b9ff166SGreg Roach		global $WT_TREE;
1594b9ff166SGreg Roach
1604b9ff166SGreg Roach		if (Auth::isEditor($WT_TREE)) {
1618c2e8227SGreg Roach			if (Filter::postBool('save') && Filter::checkCsrf()) {
1628c2e8227SGreg Roach				$block_id = Filter::postInteger('block_id');
1638c2e8227SGreg Roach				if ($block_id) {
1648c2e8227SGreg Roach					Database::prepare(
1658c2e8227SGreg Roach						"UPDATE `##block` SET gedcom_id=?, xref=? WHERE block_id=?"
16613abd6f3SGreg Roach					)->execute([Filter::postInteger('gedcom_id'), Filter::post('xref', WT_REGEX_XREF), $block_id]);
1678c2e8227SGreg Roach				} else {
1688c2e8227SGreg Roach					Database::prepare(
1698c2e8227SGreg Roach						"INSERT INTO `##block` (gedcom_id, xref, module_name, block_order) VALUES (?, ?, ?, ?)"
17013abd6f3SGreg Roach					)->execute([
1718c2e8227SGreg Roach						Filter::postInteger('gedcom_id'),
1728c2e8227SGreg Roach						Filter::post('xref', WT_REGEX_XREF),
1738c2e8227SGreg Roach						$this->getName(),
174cbc1590aSGreg Roach						0,
17513abd6f3SGreg Roach					]);
1768c2e8227SGreg Roach					$block_id = Database::getInstance()->lastInsertId();
1778c2e8227SGreg Roach				}
178e2a378d3SGreg Roach				$this->setBlockSetting($block_id, 'title', Filter::post('title'));
179e2a378d3SGreg Roach				$this->setBlockSetting($block_id, 'story_body', Filter::post('story_body'));
180c999a340SGreg Roach				$languages = Filter::postArray('lang');
181e2a378d3SGreg Roach				$this->setBlockSetting($block_id, 'languages', implode(',', $languages));
1828c2e8227SGreg Roach				$this->config();
1838c2e8227SGreg Roach			} else {
1848c2e8227SGreg Roach				$block_id = Filter::getInteger('block_id');
1858c2e8227SGreg Roach
1868c2e8227SGreg Roach				$controller = new PageController;
1878c2e8227SGreg Roach				if ($block_id) {
188cdc90107SGreg Roach					$controller->setPageTitle(I18N::translate('Edit the story'));
189e2a378d3SGreg Roach					$title      = $this->getBlockSetting($block_id, 'title');
190e2a378d3SGreg Roach					$story_body = $this->getBlockSetting($block_id, 'story_body');
1918c2e8227SGreg Roach					$xref       = Database::prepare(
1928c2e8227SGreg Roach						"SELECT xref FROM `##block` WHERE block_id=?"
19313abd6f3SGreg Roach					)->execute([$block_id])->fetchOne();
1948c2e8227SGreg Roach				} else {
1958c2e8227SGreg Roach					$controller->setPageTitle(I18N::translate('Add a story'));
1968c2e8227SGreg Roach					$title      = '';
1978c2e8227SGreg Roach					$story_body = '';
1988c2e8227SGreg Roach					$xref       = Filter::get('xref', WT_REGEX_XREF);
1998c2e8227SGreg Roach				}
20015d603e7SGreg Roach				$controller->pageHeader();
2018c2e8227SGreg Roach				if (Module::getModuleByName('ckeditor')) {
2028c2e8227SGreg Roach					CkeditorModule::enableEditor($controller);
2038c2e8227SGreg Roach				}
2048c2e8227SGreg Roach
205691beab6SGreg Roach				$individual = Individual::getInstance($xref, $WT_TREE);
206691beab6SGreg Roach
20715d603e7SGreg Roach				echo Bootstrap4::breadcrumbs([
20815d603e7SGreg Roach					'admin.php'         => I18N::translate('Control panel'),
20915d603e7SGreg Roach					'admin_modules.php' => I18N::translate('Module administration'),
21015d603e7SGreg Roach					'module.php?mod=' . $this->getName() . '&mod_action=admin_config' => $this->getTitle(),
21115d603e7SGreg Roach				], $controller->getPageTitle());
2128c2e8227SGreg Roach				?>
2138c2e8227SGreg Roach
21415d603e7SGreg Roach				<h1><?= $controller->getPageTitle() ?></h1>
2158c2e8227SGreg Roach
21615d603e7SGreg Roach				<form class="form-horizontal" method="post" action="module.php?mod=<?= $this->getName() ?>&amp;mod_action=admin_edit">
21715d603e7SGreg Roach					<?= Filter::getCsrf() ?>
218691beab6SGreg Roach					<input type="hidden" name="save" value="1">
21915d603e7SGreg Roach					<input type="hidden" name="block_id" value="<?= $block_id ?>">
22015d603e7SGreg Roach					<input type="hidden" name="gedcom_id" value="<?= $WT_TREE->getTreeId() ?>">
221691beab6SGreg Roach
22215d603e7SGreg Roach					<div class="row form-group">
22315d603e7SGreg Roach						<label for="title" class="col-sm-3 col-form-label">
22415d603e7SGreg Roach							<?= I18N::translate('Story title') ?>
225691beab6SGreg Roach						</label>
226691beab6SGreg Roach						<div class="col-sm-9">
22715d603e7SGreg Roach							<input type="text" class="form-control" name="title" id="title" value="<?= Filter::escapeHtml($title) ?>">
228691beab6SGreg Roach						</div>
229691beab6SGreg Roach					</div>
230691beab6SGreg Roach
23115d603e7SGreg Roach					<div class="row form-group">
23215d603e7SGreg Roach						<label for="story_body" class="col-sm-3 col-form-label">
23315d603e7SGreg Roach							<?= I18N::translate('Story') ?>
234691beab6SGreg Roach						</label>
235691beab6SGreg Roach						<div class="col-sm-9">
23615d603e7SGreg Roach							<textarea name="story_body" id="story_body" class="html-edit form-control" rows="10"><?= Filter::escapeHtml($story_body) ?></textarea>
237691beab6SGreg Roach						</div>
238691beab6SGreg Roach					</div>
239691beab6SGreg Roach
24015d603e7SGreg Roach					<div class="row form-group">
24115d603e7SGreg Roach						<label for="xref" class="col-sm-3 col-form-label">
24215d603e7SGreg Roach							<?= I18N::translate('Individual') ?>
243691beab6SGreg Roach						</label>
244691beab6SGreg Roach						<div class="col-sm-9">
24515d603e7SGreg Roach							<input data-autocomplete-type="INDI" type="text" name="xref" id="xref" size="4" value="<?= $xref ?>">
246691beab6SGreg Roach							<?php if ($individual): ?>
24715d603e7SGreg Roach								<?= $individual->formatList('span') ?>
24815d603e7SGreg Roach							<?php endif ?>
249691beab6SGreg Roach						</div>
250691beab6SGreg Roach					</div>
251691beab6SGreg Roach
25215d603e7SGreg Roach					<div class="row form-group">
25315d603e7SGreg Roach						<label for="xref" class="col-sm-3 col-form-label">
25415d603e7SGreg Roach							<?= I18N::translate('Show this block for which languages') ?>
255691beab6SGreg Roach						</label>
256691beab6SGreg Roach						<div class="col-sm-9">
25715d603e7SGreg Roach							<?= FunctionsEdit::editLanguageCheckboxes('lang', explode(',', $this->getBlockSetting($block_id, 'languages'))) ?>
258691beab6SGreg Roach						</div>
259691beab6SGreg Roach					</div>
260691beab6SGreg Roach
26115d603e7SGreg Roach					<div class="row form-group">
26215d603e7SGreg Roach						<div class="offset-sm-3 col-sm-9">
263691beab6SGreg Roach							<button type="submit" class="btn btn-primary">
264691beab6SGreg Roach								<i class="fa fa-check"></i>
26515d603e7SGreg Roach								<?= I18N::translate('save') ?>
266691beab6SGreg Roach							</button>
267691beab6SGreg Roach						</div>
268691beab6SGreg Roach					</div>
269691beab6SGreg Roach
270691beab6SGreg Roach				</form>
271691beab6SGreg Roach				<?php
2728c2e8227SGreg Roach			}
2738c2e8227SGreg Roach		} else {
274*bff8dc60SGreg Roach			header('Location: index.php');
2758c2e8227SGreg Roach		}
2768c2e8227SGreg Roach	}
2778c2e8227SGreg Roach
2788c2e8227SGreg Roach	/**
2798c2e8227SGreg Roach	 * Respond to a request to delete a story.
2808c2e8227SGreg Roach	 */
2818c2e8227SGreg Roach	private function delete() {
2824b9ff166SGreg Roach		global $WT_TREE;
2834b9ff166SGreg Roach
2844b9ff166SGreg Roach		if (Auth::isEditor($WT_TREE)) {
2858c2e8227SGreg Roach			$block_id = Filter::getInteger('block_id');
2868c2e8227SGreg Roach
2878c2e8227SGreg Roach			Database::prepare(
2888c2e8227SGreg Roach				"DELETE FROM `##block_setting` WHERE block_id=?"
28913abd6f3SGreg Roach			)->execute([$block_id]);
2908c2e8227SGreg Roach
2918c2e8227SGreg Roach			Database::prepare(
2928c2e8227SGreg Roach				"DELETE FROM `##block` WHERE block_id=?"
29313abd6f3SGreg Roach			)->execute([$block_id]);
2948c2e8227SGreg Roach		} else {
295*bff8dc60SGreg Roach			header('Location: index.php');
2968c2e8227SGreg Roach			exit;
2978c2e8227SGreg Roach		}
2988c2e8227SGreg Roach	}
2998c2e8227SGreg Roach
3008c2e8227SGreg Roach	/**
3018c2e8227SGreg Roach	 * The admin view - list, create, edit, delete stories.
3028c2e8227SGreg Roach	 */
3038c2e8227SGreg Roach	private function config() {
30424ec66ceSGreg Roach		global $WT_TREE;
30524ec66ceSGreg Roach
3068c2e8227SGreg Roach		$controller = new PageController;
3078c2e8227SGreg Roach		$controller
3084b9ff166SGreg Roach			->restrictAccess(Auth::isAdmin())
3098c2e8227SGreg Roach			->setPageTitle($this->getTitle())
3108c2e8227SGreg Roach			->pageHeader()
3118c2e8227SGreg Roach			->addInlineJavascript('
31215d603e7SGreg Roach				$("#story_table").dataTable({
3138c2e8227SGreg Roach					' . I18N::datatablesI18N() . ',
3148c2e8227SGreg Roach					autoWidth: false,
3158c2e8227SGreg Roach					paging: true,
3168c2e8227SGreg Roach					pagingType: "full_numbers",
3178c2e8227SGreg Roach					lengthChange: true,
3188c2e8227SGreg Roach					filter: true,
3198c2e8227SGreg Roach					info: true,
3208c2e8227SGreg Roach					sorting: [[0,"asc"]],
3218c2e8227SGreg Roach					columns: [
3228c2e8227SGreg Roach						/* 0-name */ null,
3238c2e8227SGreg Roach						/* 1-NAME */ null,
3248c2e8227SGreg Roach						/* 2-NAME */ { sortable:false },
3258c2e8227SGreg Roach						/* 3-NAME */ { sortable:false }
3268c2e8227SGreg Roach					]
3278c2e8227SGreg Roach				});
3288c2e8227SGreg Roach			');
3298c2e8227SGreg Roach
3308c2e8227SGreg Roach		$stories = Database::prepare(
3318c2e8227SGreg Roach			"SELECT block_id, xref" .
3328c2e8227SGreg Roach			" FROM `##block` b" .
3338c2e8227SGreg Roach			" WHERE module_name=?" .
3348c2e8227SGreg Roach			" AND gedcom_id=?" .
3358c2e8227SGreg Roach			" ORDER BY xref"
33613abd6f3SGreg Roach		)->execute([$this->getName(), $WT_TREE->getTreeId()])->fetchAll();
3378c2e8227SGreg Roach
33815d603e7SGreg Roach		echo Bootstrap4::breadcrumbs([
33915d603e7SGreg Roach			'admin.php'         => I18N::translate('Control panel'),
34015d603e7SGreg Roach			'admin_modules.php' => I18N::translate('Module administration'),
34115d603e7SGreg Roach		], $controller->getPageTitle());
3428c2e8227SGreg Roach		?>
3438c2e8227SGreg Roach
34415d603e7SGreg Roach		<h1><?= $controller->getPageTitle() ?></h1>
3458c2e8227SGreg Roach
3468c2e8227SGreg Roach		<form class="form form-inline">
3478c2e8227SGreg Roach			<label for="ged" class="sr-only">
34815d603e7SGreg Roach				<?= I18N::translate('Family tree') ?>
3498c2e8227SGreg Roach			</label>
35015d603e7SGreg Roach			<input type="hidden" name="mod" value="<?=  $this->getName() ?>">
3518c2e8227SGreg Roach			<input type="hidden" name="mod_action" value="admin_config">
35215d603e7SGreg Roach			<?= Bootstrap4::select(Tree::getNameList(), $WT_TREE->getName(), ['id' => 'ged', 'name' => 'ged']) ?>
35315d603e7SGreg Roach			<input type="submit" class="btn btn-primary" value="<?= I18N::translate('show') ?>">
3548c2e8227SGreg Roach		</form>
3558c2e8227SGreg Roach
3568c2e8227SGreg Roach		<p>
35715d603e7SGreg Roach			<a href="module.php?mod=<?= $this->getName() ?>&amp;mod_action=admin_edit" class="btn btn-default">
3588c2e8227SGreg Roach				<i class="fa fa-plus"></i>
35915d603e7SGreg Roach				<?= I18N::translate('Add a story') ?>
3608c2e8227SGreg Roach			</a>
3618c2e8227SGreg Roach		</p>
3628c2e8227SGreg Roach
3638c2e8227SGreg Roach		<table class="table table-bordered table-condensed">
3648c2e8227SGreg Roach			<thead>
3658c2e8227SGreg Roach				<tr>
36615d603e7SGreg Roach					<th><?= I18N::translate('Story title') ?></th>
36715d603e7SGreg Roach					<th><?= I18N::translate('Individual') ?></th>
36815d603e7SGreg Roach					<th><?= I18N::translate('Edit') ?></th>
36915d603e7SGreg Roach					<th><?= I18N::translate('Delete') ?></th>
3708c2e8227SGreg Roach				</tr>
3718c2e8227SGreg Roach			</thead>
3728c2e8227SGreg Roach			<tbody>
3738c2e8227SGreg Roach				<?php foreach ($stories as $story): ?>
3748c2e8227SGreg Roach				<tr>
3758c2e8227SGreg Roach					<td>
37615d603e7SGreg Roach						<?= Filter::escapeHtml($this->getBlockSetting($story->block_id, 'title')) ?>
3778c2e8227SGreg Roach					</td>
3788c2e8227SGreg Roach					<td>
37915d603e7SGreg Roach						<?php $individual = Individual::getInstance($story->xref, $WT_TREE) ?>
380691beab6SGreg Roach						<?php if ($individual): ?>
38115d603e7SGreg Roach						<a href="<?= $individual->getHtmlUrl() ?>#tab-stories">
38215d603e7SGreg Roach							<?= $individual->getFullName() ?>
3838c2e8227SGreg Roach						</a>
3848c2e8227SGreg Roach						<?php else: ?>
38515d603e7SGreg Roach							<?= $story->xref ?>
38615d603e7SGreg Roach						<?php endif ?>
3878c2e8227SGreg Roach						</td>
3888c2e8227SGreg Roach						<td>
38915d603e7SGreg Roach							<a href="module.php?mod=<?= $this->getName() ?>&amp;mod_action=admin_edit&amp;block_id=<?= $story->block_id ?>">
39015d603e7SGreg Roach								<i class="fa fa-pencil"></i> <?= I18N::translate('Edit') ?>
3918c2e8227SGreg Roach							</a>
3928c2e8227SGreg Roach						</td>
3938c2e8227SGreg Roach						<td>
3948c2e8227SGreg Roach							<a
39515d603e7SGreg Roach								href="module.php?mod=<?= $this->getName() ?>&amp;mod_action=admin_delete&amp;block_id=<?= $story->block_id ?>"
39615d603e7SGreg Roach								onclick="return confirm('<?= I18N::translate('Are you sure you want to delete “%s”?', Filter::escapeHtml($this->getBlockSetting($story->block_id, 'title'))) ?>');"
3978c2e8227SGreg Roach							>
39815d603e7SGreg Roach								<i class="fa fa-trash"></i> <?= I18N::translate('Delete') ?>
3998c2e8227SGreg Roach							</a>
4008c2e8227SGreg Roach					</td>
4018c2e8227SGreg Roach				</tr>
40215d603e7SGreg Roach				<?php endforeach ?>
4038c2e8227SGreg Roach			</tbody>
4048c2e8227SGreg Roach		</table>
4058c2e8227SGreg Roach		<?php
4068c2e8227SGreg Roach	}
4078c2e8227SGreg Roach
4088c2e8227SGreg Roach	/**
4098c2e8227SGreg Roach	 * Show the list of stories
4108c2e8227SGreg Roach	 */
4118c2e8227SGreg Roach	private function showList() {
41224ec66ceSGreg Roach		global $controller, $WT_TREE;
4138c2e8227SGreg Roach
4148c2e8227SGreg Roach		$controller = new PageController;
4158c2e8227SGreg Roach		$controller
4168c2e8227SGreg Roach			->setPageTitle($this->getTitle())
4178c2e8227SGreg Roach			->pageHeader()
4188c2e8227SGreg Roach			->addInlineJavascript('
41915d603e7SGreg Roach				$("#story_table").dataTable({
4208c2e8227SGreg Roach					dom: \'<"H"pf<"dt-clear">irl>t<"F"pl>\',
4218c2e8227SGreg Roach					' . I18N::datatablesI18N() . ',
4228c2e8227SGreg Roach					autoWidth: false,
4238c2e8227SGreg Roach					paging: true,
4248c2e8227SGreg Roach					pagingType: "full_numbers",
4258c2e8227SGreg Roach					lengthChange: true,
4268c2e8227SGreg Roach					filter: true,
4278c2e8227SGreg Roach					info: true,
4288c2e8227SGreg Roach					sorting: [[0,"asc"]],
4298c2e8227SGreg Roach					columns: [
4308c2e8227SGreg Roach						/* 0-name */ null,
4318c2e8227SGreg Roach						/* 1-NAME */ null
4328c2e8227SGreg Roach					]
4338c2e8227SGreg Roach				});
4348c2e8227SGreg Roach			');
4358c2e8227SGreg Roach
4368c2e8227SGreg Roach		$stories = Database::prepare(
4378c2e8227SGreg Roach			"SELECT block_id, xref" .
4388c2e8227SGreg Roach			" FROM `##block` b" .
4398c2e8227SGreg Roach			" WHERE module_name=?" .
4408c2e8227SGreg Roach			" AND gedcom_id=?" .
4418c2e8227SGreg Roach			" ORDER BY xref"
44213abd6f3SGreg Roach		)->execute([$this->getName(), $WT_TREE->getTreeId()])->fetchAll();
4438c2e8227SGreg Roach
44415d603e7SGreg Roach		echo '<h2 class="wt-page-title">', I18N::translate('Stories'), '</h2>';
4458c2e8227SGreg Roach		if (count($stories) > 0) {
4468c2e8227SGreg Roach			echo '<table id="story_table" class="width100">';
4478c2e8227SGreg Roach			echo '<thead><tr>
4488c2e8227SGreg Roach				<th>', I18N::translate('Story title'), '</th>
4498c2e8227SGreg Roach				<th>', I18N::translate('Individual'), '</th>
4508c2e8227SGreg Roach				</tr></thead>
4518c2e8227SGreg Roach				<tbody>';
4528c2e8227SGreg Roach			foreach ($stories as $story) {
45324ec66ceSGreg Roach				$indi        = Individual::getInstance($story->xref, $WT_TREE);
454e2a378d3SGreg Roach				$story_title = $this->getBlockSetting($story->block_id, 'title');
455e2a378d3SGreg Roach				$languages   = $this->getBlockSetting($story->block_id, 'languages');
4568c2e8227SGreg Roach				if (!$languages || in_array(WT_LOCALE, explode(',', $languages))) {
4578c2e8227SGreg Roach					if ($indi) {
4588c2e8227SGreg Roach						if ($indi->canShow()) {
45915d603e7SGreg 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>';
4608c2e8227SGreg Roach						}
4618c2e8227SGreg Roach					} else {
4628c2e8227SGreg Roach						echo '<tr><td>', $story_title, '</td><td class="error">', $story->xref, '</td></tr>';
4638c2e8227SGreg Roach					}
4648c2e8227SGreg Roach				}
4658c2e8227SGreg Roach			}
4668c2e8227SGreg Roach			echo '</tbody></table>';
4678c2e8227SGreg Roach		}
4688c2e8227SGreg Roach	}
4698c2e8227SGreg Roach
4700ee13198SGreg Roach	/**
4710ee13198SGreg Roach	 * The user can re-order menus. Until they do, they are shown in this order.
4720ee13198SGreg Roach	 *
4730ee13198SGreg Roach	 * @return int
4740ee13198SGreg Roach	 */
4758c2e8227SGreg Roach	public function defaultMenuOrder() {
4768c2e8227SGreg Roach		return 30;
4778c2e8227SGreg Roach	}
4788c2e8227SGreg Roach
4790ee13198SGreg Roach	/**
4800ee13198SGreg Roach	 * What is the default access level for this module?
4810ee13198SGreg Roach	 *
4820ee13198SGreg Roach	 * Some modules are aimed at admins or managers, and are not generally shown to users.
4830ee13198SGreg Roach	 *
4840ee13198SGreg Roach	 * @return int
4850ee13198SGreg Roach	 */
4868c2e8227SGreg Roach	public function defaultAccessLevel() {
4874b9ff166SGreg Roach		return Auth::PRIV_HIDE;
4888c2e8227SGreg Roach	}
4898c2e8227SGreg Roach
4900ee13198SGreg Roach	/**
4910ee13198SGreg Roach	 * A menu, to be added to the main application menu.
4920ee13198SGreg Roach	 *
4930ee13198SGreg Roach	 * @return Menu|null
4940ee13198SGreg Roach	 */
4958c2e8227SGreg Roach	public function getMenu() {
4968c2e8227SGreg Roach		$menu = new Menu($this->getTitle(), 'module.php?mod=' . $this->getName() . '&amp;mod_action=show_list', 'menu-story');
4978c2e8227SGreg Roach
4988c2e8227SGreg Roach		return $menu;
4998c2e8227SGreg Roach	}
5008c2e8227SGreg Roach}
501