xref: /webtrees/app/Module/StoriesModule.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 StoriesModule
218c2e8227SGreg Roach */
22e2a378d3SGreg Roachclass StoriesModule extends AbstractModule implements ModuleTabInterface, ModuleConfigInterface, ModuleMenuInterface {
238c2e8227SGreg Roach	/** {@inheritdoc} */
248c2e8227SGreg Roach	public function getTitle() {
258c2e8227SGreg Roach		return /* I18N: Name of a module */ I18N::translate('Stories');
268c2e8227SGreg Roach	}
278c2e8227SGreg Roach
288c2e8227SGreg Roach	/** {@inheritdoc} */
298c2e8227SGreg Roach	public function getDescription() {
308c2e8227SGreg Roach		return /* I18N: Description of the “Stories” module */ I18N::translate('Add narrative stories to individuals in the family tree.');
318c2e8227SGreg Roach	}
328c2e8227SGreg Roach
338c2e8227SGreg Roach	/** {@inheritdoc} */
348c2e8227SGreg Roach	public function modAction($mod_action) {
358c2e8227SGreg Roach		switch ($mod_action) {
368c2e8227SGreg Roach		case 'admin_edit':
378c2e8227SGreg Roach			$this->edit();
388c2e8227SGreg Roach			break;
398c2e8227SGreg Roach		case 'admin_delete':
408c2e8227SGreg Roach			$this->delete();
418c2e8227SGreg Roach			$this->config();
428c2e8227SGreg Roach			break;
438c2e8227SGreg Roach		case 'admin_config':
448c2e8227SGreg Roach			$this->config();
458c2e8227SGreg Roach			break;
468c2e8227SGreg Roach		case 'show_list':
478c2e8227SGreg Roach			$this->showList();
488c2e8227SGreg Roach			break;
498c2e8227SGreg Roach		default:
508c2e8227SGreg Roach			http_response_code(404);
518c2e8227SGreg Roach		}
528c2e8227SGreg Roach	}
538c2e8227SGreg Roach
548c2e8227SGreg Roach	/** {@inheritdoc} */
558c2e8227SGreg Roach	public function getConfigLink() {
568c2e8227SGreg Roach		return 'module.php?mod=' . $this->getName() . '&amp;mod_action=admin_config';
578c2e8227SGreg Roach	}
588c2e8227SGreg Roach
598c2e8227SGreg Roach	/** {@inheritdoc} */
608c2e8227SGreg Roach	public function defaultTabOrder() {
618c2e8227SGreg Roach		return 55;
628c2e8227SGreg Roach	}
638c2e8227SGreg Roach
648c2e8227SGreg Roach	/** {@inheritdoc} */
658c2e8227SGreg Roach	public function getTabContent() {
664b9ff166SGreg Roach		global $controller, $WT_TREE;
678c2e8227SGreg Roach
688c2e8227SGreg Roach		$block_ids =
698c2e8227SGreg Roach			Database::prepare(
708c2e8227SGreg Roach				"SELECT block_id" .
718c2e8227SGreg Roach				" FROM `##block`" .
728c2e8227SGreg Roach				" WHERE module_name=?" .
738c2e8227SGreg Roach				" AND xref=?" .
748c2e8227SGreg Roach				" AND gedcom_id=?"
758c2e8227SGreg Roach			)->execute(array(
768c2e8227SGreg Roach				$this->getName(),
778c2e8227SGreg Roach				$controller->record->getXref(),
78*cbc1590aSGreg Roach				$controller->record->getTree()->getTreeId(),
798c2e8227SGreg Roach			))->fetchOneColumn();
808c2e8227SGreg Roach
818c2e8227SGreg Roach		$html = '';
828c2e8227SGreg Roach		foreach ($block_ids as $block_id) {
838c2e8227SGreg Roach			// Only show this block for certain languages
84e2a378d3SGreg Roach			$languages = $this->getBlockSetting($block_id, 'languages');
858c2e8227SGreg Roach			if (!$languages || in_array(WT_LOCALE, explode(',', $languages))) {
86e2a378d3SGreg Roach				$html .= '<div class="story_title descriptionbox center rela">' . $this->getBlockSetting($block_id, 'title') . '</div>';
87e2a378d3SGreg Roach				$html .= '<div class="story_body optionbox">' . $this->getBlockSetting($block_id, 'story_body') . '</div>';
884b9ff166SGreg Roach				if (Auth::isEditor($WT_TREE)) {
898c2e8227SGreg Roach					$html .= '<div class="story_edit"><a href="module.php?mod=' . $this->getName() . '&amp;mod_action=admin_edit&amp;block_id=' . $block_id . '">';
908c2e8227SGreg Roach					$html .= I18N::translate('Edit story') . '</a></div>';
918c2e8227SGreg Roach				}
928c2e8227SGreg Roach			}
938c2e8227SGreg Roach		}
944b9ff166SGreg Roach		if (Auth::isManager($WT_TREE) && !$html) {
958c2e8227SGreg Roach			$html .= '<div class="news_title center">' . $this->getTitle() . '</div>';
968c2e8227SGreg Roach			$html .= '<div><a href="module.php?mod=' . $this->getName() . '&amp;mod_action=admin_edit&amp;xref=' . $controller->record->getXref() . '">';
978c2e8227SGreg Roach			$html .= I18N::translate('Add a story') . '</a></div><br>';
988c2e8227SGreg Roach		}
998c2e8227SGreg Roach
1008c2e8227SGreg Roach		return $html;
1018c2e8227SGreg Roach	}
1028c2e8227SGreg Roach
1038c2e8227SGreg Roach	/** {@inheritdoc} */
1048c2e8227SGreg Roach	public function hasTabContent() {
105*cbc1590aSGreg Roach		return $this->getTabContent() != '';
1068c2e8227SGreg Roach	}
1078c2e8227SGreg Roach
1088c2e8227SGreg Roach	/** {@inheritdoc} */
1098c2e8227SGreg Roach	public function isGrayedOut() {
1108c2e8227SGreg Roach		global $controller;
1118c2e8227SGreg Roach
1128c2e8227SGreg Roach		$count_of_stories =
1138c2e8227SGreg Roach			Database::prepare(
1148c2e8227SGreg Roach				"SELECT COUNT(block_id)" .
1158c2e8227SGreg Roach				" FROM `##block`" .
1168c2e8227SGreg Roach				" WHERE module_name=?" .
1178c2e8227SGreg Roach				" AND xref=?" .
1188c2e8227SGreg Roach				" AND gedcom_id=?"
1198c2e8227SGreg Roach			)->execute(array(
1208c2e8227SGreg Roach				$this->getName(),
1218c2e8227SGreg Roach				$controller->record->getXref(),
122*cbc1590aSGreg Roach				$controller->record->getTree()->getTreeId(),
1238c2e8227SGreg Roach			))->fetchOne();
1248c2e8227SGreg Roach
1258c2e8227SGreg Roach		return $count_of_stories == 0;
1268c2e8227SGreg Roach	}
1278c2e8227SGreg Roach
1288c2e8227SGreg Roach	/** {@inheritdoc} */
1298c2e8227SGreg Roach	public function canLoadAjax() {
1308c2e8227SGreg Roach		return false;
1318c2e8227SGreg Roach	}
1328c2e8227SGreg Roach
1338c2e8227SGreg Roach	/** {@inheritdoc} */
1348c2e8227SGreg Roach	public function getPreLoadContent() {
1358c2e8227SGreg Roach		return '';
1368c2e8227SGreg Roach	}
1378c2e8227SGreg Roach
1388c2e8227SGreg Roach	/**
1398c2e8227SGreg Roach	 * Show and process a form to edit a story.
1408c2e8227SGreg Roach	 */
1418c2e8227SGreg Roach	private function edit() {
1424b9ff166SGreg Roach		global $WT_TREE;
1434b9ff166SGreg Roach
1444b9ff166SGreg Roach		if (Auth::isEditor($WT_TREE)) {
1458c2e8227SGreg Roach			if (Filter::postBool('save') && Filter::checkCsrf()) {
1468c2e8227SGreg Roach				$block_id = Filter::postInteger('block_id');
1478c2e8227SGreg Roach				if ($block_id) {
1488c2e8227SGreg Roach					Database::prepare(
1498c2e8227SGreg Roach						"UPDATE `##block` SET gedcom_id=?, xref=? WHERE block_id=?"
1508c2e8227SGreg Roach					)->execute(array(Filter::postInteger('gedcom_id'), Filter::post('xref', WT_REGEX_XREF), $block_id));
1518c2e8227SGreg Roach				} else {
1528c2e8227SGreg Roach					Database::prepare(
1538c2e8227SGreg Roach						"INSERT INTO `##block` (gedcom_id, xref, module_name, block_order) VALUES (?, ?, ?, ?)"
1548c2e8227SGreg Roach					)->execute(array(
1558c2e8227SGreg Roach						Filter::postInteger('gedcom_id'),
1568c2e8227SGreg Roach						Filter::post('xref', WT_REGEX_XREF),
1578c2e8227SGreg Roach						$this->getName(),
158*cbc1590aSGreg Roach						0,
1598c2e8227SGreg Roach					));
1608c2e8227SGreg Roach					$block_id = Database::getInstance()->lastInsertId();
1618c2e8227SGreg Roach				}
162e2a378d3SGreg Roach				$this->setBlockSetting($block_id, 'title', Filter::post('title'));
163e2a378d3SGreg Roach				$this->setBlockSetting($block_id, 'story_body', Filter::post('story_body'));
164c999a340SGreg Roach				$languages = Filter::postArray('lang');
165e2a378d3SGreg Roach				$this->setBlockSetting($block_id, 'languages', implode(',', $languages));
1668c2e8227SGreg Roach				$this->config();
1678c2e8227SGreg Roach			} else {
1688c2e8227SGreg Roach				$block_id = Filter::getInteger('block_id');
1698c2e8227SGreg Roach
1708c2e8227SGreg Roach				$controller = new PageController;
1718c2e8227SGreg Roach				if ($block_id) {
1728c2e8227SGreg Roach					$controller->setPageTitle(I18N::translate('Edit story'));
173e2a378d3SGreg Roach					$title      = $this->getBlockSetting($block_id, 'title');
174e2a378d3SGreg Roach					$story_body = $this->getBlockSetting($block_id, 'story_body');
1758c2e8227SGreg Roach					$xref       = Database::prepare(
1768c2e8227SGreg Roach						"SELECT xref FROM `##block` WHERE block_id=?"
1778c2e8227SGreg Roach					)->execute(array($block_id))->fetchOne();
1788c2e8227SGreg Roach				} else {
1798c2e8227SGreg Roach					$controller->setPageTitle(I18N::translate('Add a story'));
1808c2e8227SGreg Roach					$title      = '';
1818c2e8227SGreg Roach					$story_body = '';
1828c2e8227SGreg Roach					$xref       = Filter::get('xref', WT_REGEX_XREF);
1838c2e8227SGreg Roach				}
1848c2e8227SGreg Roach				$controller
1858c2e8227SGreg Roach					->pageHeader()
1868c2e8227SGreg Roach					->addExternalJavascript(WT_AUTOCOMPLETE_JS_URL)
1878c2e8227SGreg Roach					->addInlineJavascript('autocomplete();');
1888c2e8227SGreg Roach				if (Module::getModuleByName('ckeditor')) {
1898c2e8227SGreg Roach					CkeditorModule::enableEditor($controller);
1908c2e8227SGreg Roach				}
1918c2e8227SGreg Roach
192691beab6SGreg Roach				$individual = Individual::getInstance($xref, $WT_TREE);
193691beab6SGreg Roach
1948c2e8227SGreg Roach				?>
1958c2e8227SGreg Roach				<ol class="breadcrumb small">
1968c2e8227SGreg Roach					<li><a href="admin.php"><?php echo I18N::translate('Control panel'); ?></a></li>
1978c2e8227SGreg Roach					<li><a href="admin_modules.php"><?php echo I18N::translate('Module administration'); ?></a></li>
1988c2e8227SGreg Roach					<li><a href="module.php?mod=<?php echo $this->getName(); ?>&mod_action=admin_config"><?php echo $this->getTitle(); ?></a></li>
1998c2e8227SGreg Roach					<li class="active"><?php echo $controller->getPageTitle(); ?></li>
2008c2e8227SGreg Roach				</ol>
2018c2e8227SGreg Roach
2028c2e8227SGreg Roach				<h1><?php echo $controller->getPageTitle(); ?></h1>
2038c2e8227SGreg Roach
204691beab6SGreg Roach				<form class="form-horizontal" method="post" action="module.php?mod=<?php echo $this->getName(); ?>&amp;mod_action=admin_edit">
205691beab6SGreg Roach					<?php echo Filter::getCsrf(); ?>
206691beab6SGreg Roach					<input type="hidden" name="save" value="1">
207691beab6SGreg Roach					<input type="hidden" name="block_id" value="<?php echo $block_id; ?>">
208691beab6SGreg Roach					<input type="hidden" name="gedcom_id" value="<?php echo $WT_TREE->getTreeId(); ?>">
209691beab6SGreg Roach
210691beab6SGreg Roach					<div class="form-group">
211691beab6SGreg Roach						<label for="title" class="col-sm-3 control-label">
212691beab6SGreg Roach							<?php echo I18N::translate('Story title'); ?>
213691beab6SGreg Roach						</label>
214691beab6SGreg Roach						<div class="col-sm-9">
215691beab6SGreg Roach							<input type="text" class="form-control" name="title" id="title" value="<?php echo Filter::escapeHtml($title); ?>">
216691beab6SGreg Roach						</div>
217691beab6SGreg Roach					</div>
218691beab6SGreg Roach
219691beab6SGreg Roach					<div class="form-group">
220691beab6SGreg Roach						<label for="story_body" class="col-sm-3 control-label">
221691beab6SGreg Roach							<?php echo I18N::translate('Story'); ?>
222691beab6SGreg Roach						</label>
223691beab6SGreg Roach						<div class="col-sm-9">
224691beab6SGreg Roach							<textarea name="story_body" id="story_body" class="html-edit form-control" rows="10"><?php echo Filter::escapeHtml($story_body); ?></textarea>
225691beab6SGreg Roach						</div>
226691beab6SGreg Roach					</div>
227691beab6SGreg Roach
228691beab6SGreg Roach					<div class="form-group">
229691beab6SGreg Roach						<label for="xref" class="col-sm-3 control-label">
230691beab6SGreg Roach							<?php echo I18N::translate('Individual'); ?>
231691beab6SGreg Roach						</label>
232691beab6SGreg Roach						<div class="col-sm-9">
233691beab6SGreg Roach							<input data-autocomplete-type="INDI" type="text" name="xref" id="xref" size="4" value="<?php echo $xref; ?>">
234691beab6SGreg Roach							<?php echo print_findindi_link('xref'); ?>
235691beab6SGreg Roach							<?php if ($individual): ?>
236691beab6SGreg Roach								<?php echo $individual->formatList('span'); ?>
237691beab6SGreg Roach							<?php endif; ?>
238691beab6SGreg Roach						</div>
239691beab6SGreg Roach					</div>
240691beab6SGreg Roach
241691beab6SGreg Roach					<div class="form-group">
242691beab6SGreg Roach						<label for="xref" class="col-sm-3 control-label">
243691beab6SGreg Roach							<?php echo I18N::translate('Show this block for which languages?'); ?>
244691beab6SGreg Roach						</label>
245691beab6SGreg Roach						<div class="col-sm-9">
246691beab6SGreg Roach							<?php echo edit_language_checkboxes('lang', explode(',', $this->getBlockSetting($block_id, 'languages'))); ?>
247691beab6SGreg Roach						</div>
248691beab6SGreg Roach					</div>
249691beab6SGreg Roach
250691beab6SGreg Roach					<div class="form-group">
251691beab6SGreg Roach						<div class="col-sm-offset-3 col-sm-9">
252691beab6SGreg Roach							<button type="submit" class="btn btn-primary">
253691beab6SGreg Roach								<i class="fa fa-check"></i>
254691beab6SGreg Roach								<?php echo I18N::translate('save'); ?>
255691beab6SGreg Roach							</button>
256691beab6SGreg Roach						</div>
257691beab6SGreg Roach					</div>
258691beab6SGreg Roach
259691beab6SGreg Roach				</form>
260691beab6SGreg Roach				<?php
2618c2e8227SGreg Roach			}
2628c2e8227SGreg Roach		} else {
2638c2e8227SGreg Roach			header('Location: ' . WT_BASE_URL);
2648c2e8227SGreg Roach		}
2658c2e8227SGreg Roach	}
2668c2e8227SGreg Roach
2678c2e8227SGreg Roach	/**
2688c2e8227SGreg Roach	 * Respond to a request to delete a story.
2698c2e8227SGreg Roach	 */
2708c2e8227SGreg Roach	private function delete() {
2714b9ff166SGreg Roach		global $WT_TREE;
2724b9ff166SGreg Roach
2734b9ff166SGreg Roach		if (Auth::isEditor($WT_TREE)) {
2748c2e8227SGreg Roach			$block_id = Filter::getInteger('block_id');
2758c2e8227SGreg Roach
2768c2e8227SGreg Roach			Database::prepare(
2778c2e8227SGreg Roach				"DELETE FROM `##block_setting` WHERE block_id=?"
2788c2e8227SGreg Roach			)->execute(array($block_id));
2798c2e8227SGreg Roach
2808c2e8227SGreg Roach			Database::prepare(
2818c2e8227SGreg Roach				"DELETE FROM `##block` WHERE block_id=?"
2828c2e8227SGreg Roach			)->execute(array($block_id));
2838c2e8227SGreg Roach		} else {
2848c2e8227SGreg Roach			header('Location: ' . WT_BASE_URL);
2858c2e8227SGreg Roach			exit;
2868c2e8227SGreg Roach		}
2878c2e8227SGreg Roach	}
2888c2e8227SGreg Roach
2898c2e8227SGreg Roach	/**
2908c2e8227SGreg Roach	 * The admin view - list, create, edit, delete stories.
2918c2e8227SGreg Roach	 */
2928c2e8227SGreg Roach	private function config() {
29324ec66ceSGreg Roach		global $WT_TREE;
29424ec66ceSGreg Roach
2958c2e8227SGreg Roach		$controller = new PageController;
2968c2e8227SGreg Roach		$controller
2974b9ff166SGreg Roach			->restrictAccess(Auth::isAdmin())
2988c2e8227SGreg Roach			->setPageTitle($this->getTitle())
2998c2e8227SGreg Roach			->pageHeader()
3008c2e8227SGreg Roach			->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL)
3018c2e8227SGreg Roach			->addExternalJavascript(WT_DATATABLES_BOOTSTRAP_JS_URL)
3028c2e8227SGreg Roach			->addInlineJavascript('
3038c2e8227SGreg Roach				jQuery("#story_table").dataTable({
3048c2e8227SGreg Roach					' . I18N::datatablesI18N() . ',
3058c2e8227SGreg Roach					autoWidth: false,
3068c2e8227SGreg Roach					paging: true,
3078c2e8227SGreg Roach					pagingType: "full_numbers",
3088c2e8227SGreg Roach					lengthChange: true,
3098c2e8227SGreg Roach					filter: true,
3108c2e8227SGreg Roach					info: true,
3118c2e8227SGreg Roach					sorting: [[0,"asc"]],
3128c2e8227SGreg Roach					columns: [
3138c2e8227SGreg Roach						/* 0-name */ null,
3148c2e8227SGreg Roach						/* 1-NAME */ null,
3158c2e8227SGreg Roach						/* 2-NAME */ { sortable:false },
3168c2e8227SGreg Roach						/* 3-NAME */ { sortable:false }
3178c2e8227SGreg Roach					]
3188c2e8227SGreg Roach				});
3198c2e8227SGreg Roach			');
3208c2e8227SGreg Roach
3218c2e8227SGreg Roach		$stories = Database::prepare(
3228c2e8227SGreg Roach			"SELECT block_id, xref" .
3238c2e8227SGreg Roach			" FROM `##block` b" .
3248c2e8227SGreg Roach			" WHERE module_name=?" .
3258c2e8227SGreg Roach			" AND gedcom_id=?" .
3268c2e8227SGreg Roach			" ORDER BY xref"
32724ec66ceSGreg Roach		)->execute(array($this->getName(), $WT_TREE->getTreeId()))->fetchAll();
3288c2e8227SGreg Roach
3298c2e8227SGreg Roach		?>
3308c2e8227SGreg Roach		<ol class="breadcrumb small">
3318c2e8227SGreg Roach			<li><a href="admin.php"><?php echo I18N::translate('Control panel'); ?></a></li>
3328c2e8227SGreg Roach			<li><a href="admin_modules.php"><?php echo I18N::translate('Module administration'); ?></a></li>
3338c2e8227SGreg Roach			<li class="active"><?php echo $controller->getPageTitle(); ?></li>
3348c2e8227SGreg Roach		</ol>
3358c2e8227SGreg Roach
3368c2e8227SGreg Roach		<h1><?php echo $controller->getPageTitle(); ?></h1>
3378c2e8227SGreg Roach
3388c2e8227SGreg Roach		<form class="form form-inline">
3398c2e8227SGreg Roach			<label for="ged" class="sr-only">
3408c2e8227SGreg Roach				<?php echo I18N::translate('Family tree'); ?>
3418c2e8227SGreg Roach			</label>
3428c2e8227SGreg Roach			<input type="hidden" name="mod" value="<?php echo  $this->getName(); ?>">
3438c2e8227SGreg Roach			<input type="hidden" name="mod_action" value="admin_config">
34424ec66ceSGreg Roach			<?php echo select_edit_control('ged', Tree::getNameList(), null, $WT_TREE->getName(), 'class="form-control"'); ?>
3458c2e8227SGreg Roach			<input type="submit" class="btn btn-primary" value="<?php echo I18N::translate('show'); ?>">
3468c2e8227SGreg Roach		</form>
3478c2e8227SGreg Roach
3488c2e8227SGreg Roach		<p>
3498c2e8227SGreg Roach			<a href="module.php?mod=<?php echo $this->getName(); ?>&amp;mod_action=admin_edit" class="btn btn-default">
3508c2e8227SGreg Roach				<i class="fa fa-plus"></i>
3518c2e8227SGreg Roach				<?php echo I18N::translate('Add a story'); ?>
3528c2e8227SGreg Roach			</a>
3538c2e8227SGreg Roach		</p>
3548c2e8227SGreg Roach
3558c2e8227SGreg Roach		<table class="table table-bordered table-condensed">
3568c2e8227SGreg Roach			<thead>
3578c2e8227SGreg Roach				<tr>
3588c2e8227SGreg Roach					<th><?php echo I18N::translate('Story title'); ?></th>
3598c2e8227SGreg Roach					<th><?php echo I18N::translate('Individual'); ?></th>
3608c2e8227SGreg Roach					<th><?php echo I18N::translate('Edit'); ?></th>
3618c2e8227SGreg Roach					<th><?php echo I18N::translate('Delete'); ?></th>
3628c2e8227SGreg Roach				</tr>
3638c2e8227SGreg Roach			</thead>
3648c2e8227SGreg Roach			<tbody>
3658c2e8227SGreg Roach				<?php foreach ($stories as $story): ?>
3668c2e8227SGreg Roach				<tr>
3678c2e8227SGreg Roach					<td>
368e2a378d3SGreg Roach						<?php echo Filter::escapeHtml($this->getBlockSetting($story->block_id, 'title')); ?>
3698c2e8227SGreg Roach					</td>
3708c2e8227SGreg Roach					<td>
371691beab6SGreg Roach						<?php $individual = Individual::getInstance($story->xref, $WT_TREE); ?>
372691beab6SGreg Roach						<?php if ($individual): ?>
373691beab6SGreg Roach						<a href="<?php echo $individual->getHtmlUrl(); ?>#stories">
374691beab6SGreg Roach							<?php echo $individual->getFullName(); ?>
3758c2e8227SGreg Roach						</a>
3768c2e8227SGreg Roach						<?php else: ?>
3778c2e8227SGreg Roach							<?php echo $story->xref; ?>
3788c2e8227SGreg Roach						<?php endif; ?>
3798c2e8227SGreg Roach						</td>
3808c2e8227SGreg Roach						<td>
3818c2e8227SGreg Roach							<a href="module.php?mod=<?php echo $this->getName(); ?>&amp;mod_action=admin_edit&amp;block_id=<?php echo $story->block_id; ?>">
3828c2e8227SGreg Roach								<div class="icon-edit">&nbsp;</div>
3838c2e8227SGreg Roach							</a>
3848c2e8227SGreg Roach						</td>
3858c2e8227SGreg Roach						<td>
3868c2e8227SGreg Roach							<a
3878c2e8227SGreg Roach								href="module.php?mod=<?php echo $this->getName(); ?>&amp;mod_action=admin_delete&amp;block_id=<?php echo $story->block_id; ?>"
3888c2e8227SGreg Roach								onclick="return confirm('<?php echo I18N::translate('Are you sure you want to delete this story?'); ?>');"
3898c2e8227SGreg Roach							>
3908c2e8227SGreg Roach								<div class="icon-delete">&nbsp;</div>
3918c2e8227SGreg Roach							</a>
3928c2e8227SGreg Roach					</td>
3938c2e8227SGreg Roach				</tr>
3948c2e8227SGreg Roach				<?php endforeach; ?>
3958c2e8227SGreg Roach			</tbody>
3968c2e8227SGreg Roach		</table>
3978c2e8227SGreg Roach		<?php
3988c2e8227SGreg Roach	}
3998c2e8227SGreg Roach
4008c2e8227SGreg Roach	/**
4018c2e8227SGreg Roach	 * Show the list of stories
4028c2e8227SGreg Roach	 */
4038c2e8227SGreg Roach	private function showList() {
40424ec66ceSGreg Roach		global $controller, $WT_TREE;
4058c2e8227SGreg Roach
4068c2e8227SGreg Roach		$controller = new PageController;
4078c2e8227SGreg Roach		$controller
4088c2e8227SGreg Roach			->setPageTitle($this->getTitle())
4098c2e8227SGreg Roach			->pageHeader()
4108c2e8227SGreg Roach			->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL)
4118c2e8227SGreg Roach			->addInlineJavascript('
4128c2e8227SGreg Roach				jQuery("#story_table").dataTable({
4138c2e8227SGreg Roach					dom: \'<"H"pf<"dt-clear">irl>t<"F"pl>\',
4148c2e8227SGreg Roach					' . I18N::datatablesI18N() . ',
4158c2e8227SGreg Roach					autoWidth: false,
4168c2e8227SGreg Roach					paging: true,
4178c2e8227SGreg Roach					pagingType: "full_numbers",
4188c2e8227SGreg Roach					lengthChange: true,
4198c2e8227SGreg Roach					filter: true,
4208c2e8227SGreg Roach					info: true,
4218c2e8227SGreg Roach					jQueryUI: true,
4228c2e8227SGreg Roach					sorting: [[0,"asc"]],
4238c2e8227SGreg Roach					columns: [
4248c2e8227SGreg Roach						/* 0-name */ null,
4258c2e8227SGreg Roach						/* 1-NAME */ null
4268c2e8227SGreg Roach					]
4278c2e8227SGreg Roach				});
4288c2e8227SGreg Roach			');
4298c2e8227SGreg Roach
4308c2e8227SGreg Roach		$stories = Database::prepare(
4318c2e8227SGreg Roach			"SELECT block_id, xref" .
4328c2e8227SGreg Roach			" FROM `##block` b" .
4338c2e8227SGreg Roach			" WHERE module_name=?" .
4348c2e8227SGreg Roach			" AND gedcom_id=?" .
4358c2e8227SGreg Roach			" ORDER BY xref"
43624ec66ceSGreg Roach		)->execute(array($this->getName(), $WT_TREE->getTreeId()))->fetchAll();
4378c2e8227SGreg Roach
4388c2e8227SGreg Roach		echo '<h2 class="center">', I18N::translate('Stories'), '</h2>';
4398c2e8227SGreg Roach		if (count($stories) > 0) {
4408c2e8227SGreg Roach			echo '<table id="story_table" class="width100">';
4418c2e8227SGreg Roach			echo '<thead><tr>
4428c2e8227SGreg Roach				<th>', I18N::translate('Story title'), '</th>
4438c2e8227SGreg Roach				<th>', I18N::translate('Individual'), '</th>
4448c2e8227SGreg Roach				</tr></thead>
4458c2e8227SGreg Roach				<tbody>';
4468c2e8227SGreg Roach			foreach ($stories as $story) {
44724ec66ceSGreg Roach				$indi        = Individual::getInstance($story->xref, $WT_TREE);
448e2a378d3SGreg Roach				$story_title = $this->getBlockSetting($story->block_id, 'title');
449e2a378d3SGreg Roach				$languages   = $this->getBlockSetting($story->block_id, 'languages');
4508c2e8227SGreg Roach				if (!$languages || in_array(WT_LOCALE, explode(',', $languages))) {
4518c2e8227SGreg Roach					if ($indi) {
4528c2e8227SGreg Roach						if ($indi->canShow()) {
4538c2e8227SGreg Roach							echo '<tr><td><a href="' . $indi->getHtmlUrl() . '#stories">' . $story_title . '</a></td><td><a href="' . $indi->getHtmlUrl() . '#stories">' . $indi->getFullName() . '</a></td></tr>';
4548c2e8227SGreg Roach						}
4558c2e8227SGreg Roach					} else {
4568c2e8227SGreg Roach						echo '<tr><td>', $story_title, '</td><td class="error">', $story->xref, '</td></tr>';
4578c2e8227SGreg Roach					}
4588c2e8227SGreg Roach				}
4598c2e8227SGreg Roach			}
4608c2e8227SGreg Roach			echo '</tbody></table>';
4618c2e8227SGreg Roach		}
4628c2e8227SGreg Roach	}
4638c2e8227SGreg Roach
4648c2e8227SGreg Roach	/** {@inheritdoc} */
4658c2e8227SGreg Roach	public function defaultMenuOrder() {
4668c2e8227SGreg Roach		return 30;
4678c2e8227SGreg Roach	}
4688c2e8227SGreg Roach
4698c2e8227SGreg Roach	/** {@inheritdoc} */
4708c2e8227SGreg Roach	public function defaultAccessLevel() {
4714b9ff166SGreg Roach		return Auth::PRIV_HIDE;
4728c2e8227SGreg Roach	}
4738c2e8227SGreg Roach
4748c2e8227SGreg Roach	/** {@inheritdoc} */
4758c2e8227SGreg Roach	public function getMenu() {
4768c2e8227SGreg Roach		if (Auth::isSearchEngine()) {
4778c2e8227SGreg Roach			return null;
4788c2e8227SGreg Roach		}
4798c2e8227SGreg Roach
4808c2e8227SGreg Roach		$menu = new Menu($this->getTitle(), 'module.php?mod=' . $this->getName() . '&amp;mod_action=show_list', 'menu-story');
4818c2e8227SGreg Roach
4828c2e8227SGreg Roach		return $menu;
4838c2e8227SGreg Roach	}
4848c2e8227SGreg Roach}
485