xref: /webtrees/app/Module/FrequentlyAskedQuestionsModule.php (revision 13abd6f3a37322f885d85df150e105d27ad81f8d)
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;
1776692c8bSGreg Roach
180e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth;
190e62c4b8SGreg Roachuse Fisharebest\Webtrees\Controller\PageController;
200e62c4b8SGreg Roachuse Fisharebest\Webtrees\Database;
210e62c4b8SGreg Roachuse Fisharebest\Webtrees\Filter;
223d7a8a4cSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsEdit;
230e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
240e62c4b8SGreg Roachuse Fisharebest\Webtrees\Menu;
250e62c4b8SGreg Roachuse Fisharebest\Webtrees\Module;
260e62c4b8SGreg Roachuse Fisharebest\Webtrees\Tree;
278c2e8227SGreg Roach
288c2e8227SGreg Roach/**
298c2e8227SGreg Roach * Class FrequentlyAskedQuestionsModule
308c2e8227SGreg Roach */
31e2a378d3SGreg Roachclass FrequentlyAskedQuestionsModule extends AbstractModule implements ModuleMenuInterface, ModuleConfigInterface {
328c2e8227SGreg Roach	/** {@inheritdoc} */
338c2e8227SGreg Roach	public function getTitle() {
348c2e8227SGreg Roach		return /* I18N: Name of a module. Abbreviation for “Frequently Asked Questions” */ I18N::translate('FAQ');
358c2e8227SGreg Roach	}
368c2e8227SGreg Roach
378c2e8227SGreg Roach	/** {@inheritdoc} */
388c2e8227SGreg Roach	public function getDescription() {
398c2e8227SGreg Roach		return /* I18N: Description of the “FAQ” module */ I18N::translate('A list of frequently asked questions and answers.');
408c2e8227SGreg Roach	}
418c2e8227SGreg Roach
4276692c8bSGreg Roach	/**
4376692c8bSGreg Roach	 * This is a general purpose hook, allowing modules to respond to routes
4476692c8bSGreg Roach	 * of the form module.php?mod=FOO&mod_action=BAR
4576692c8bSGreg Roach	 *
4676692c8bSGreg Roach	 * @param string $mod_action
4776692c8bSGreg Roach	 */
488c2e8227SGreg Roach	public function modAction($mod_action) {
498c2e8227SGreg Roach		switch ($mod_action) {
508c2e8227SGreg Roach		case 'admin_config':
518c2e8227SGreg Roach			$this->config();
528c2e8227SGreg Roach			break;
538c2e8227SGreg Roach		case 'admin_delete':
54b1d70009SGreg Roach			if (Auth::isAdmin()) {
558c2e8227SGreg Roach				$this->delete();
56b1d70009SGreg Roach			}
57b1d70009SGreg Roach			header('Location: ' . WT_BASE_URL . 'module.php?mod=faq&mod_action=admin_config');
588c2e8227SGreg Roach			break;
598c2e8227SGreg Roach		case 'admin_edit':
608c2e8227SGreg Roach			$this->edit();
618c2e8227SGreg Roach			break;
62b1d70009SGreg Roach		case 'admin_edit_save':
63b1d70009SGreg Roach			if (Auth::isAdmin()) {
64b1d70009SGreg Roach				$this->editSave();
65b1d70009SGreg Roach			}
66b1d70009SGreg Roach			header('Location: ' . WT_BASE_URL . 'module.php?mod=faq&mod_action=admin_config');
67b1d70009SGreg Roach			break;
688c2e8227SGreg Roach		case 'admin_movedown':
69b1d70009SGreg Roach			if (Auth::isAdmin()) {
708c2e8227SGreg Roach				$this->movedown();
71b1d70009SGreg Roach			}
72b1d70009SGreg Roach			header('Location: ' . WT_BASE_URL . 'module.php?mod=faq&mod_action=admin_config');
738c2e8227SGreg Roach			break;
748c2e8227SGreg Roach		case 'admin_moveup':
75b1d70009SGreg Roach			if (Auth::isAdmin()) {
768c2e8227SGreg Roach				$this->moveup();
77b1d70009SGreg Roach			}
78b1d70009SGreg Roach			header('Location: ' . WT_BASE_URL . 'module.php?mod=faq&mod_action=admin_config');
798c2e8227SGreg Roach			break;
808c2e8227SGreg Roach		case 'show':
818c2e8227SGreg Roach			$this->show();
828c2e8227SGreg Roach			break;
838c2e8227SGreg Roach		default:
848c2e8227SGreg Roach			http_response_code(404);
858c2e8227SGreg Roach		}
868c2e8227SGreg Roach	}
878c2e8227SGreg Roach
888c2e8227SGreg Roach	/** {@inheritdoc} */
898c2e8227SGreg Roach	public function getConfigLink() {
908c2e8227SGreg Roach		return 'module.php?mod=' . $this->getName() . '&amp;mod_action=admin_config';
918c2e8227SGreg Roach	}
928c2e8227SGreg Roach
938c2e8227SGreg Roach	/**
948c2e8227SGreg Roach	 * Action from the configuration page
958c2e8227SGreg Roach	 */
96b1d70009SGreg Roach	private function editSave() {
97b1d70009SGreg Roach		if (Filter::checkCsrf()) {
988c2e8227SGreg Roach			$block_id = Filter::postInteger('block_id');
998c2e8227SGreg Roach			if ($block_id) {
1008c2e8227SGreg Roach				Database::prepare(
1018c2e8227SGreg Roach					"UPDATE `##block` SET gedcom_id = NULLIF(:tree_id, '0'), block_order = :block_order WHERE block_id = :block_id"
102*13abd6f3SGreg Roach				)->execute([
1038c2e8227SGreg Roach					'tree_id'     => Filter::postInteger('gedcom_id'),
1048c2e8227SGreg Roach					'block_order' => Filter::postInteger('block_order'),
105cbc1590aSGreg Roach					'block_id'    => $block_id,
106*13abd6f3SGreg Roach				]);
1078c2e8227SGreg Roach			} else {
1088c2e8227SGreg Roach				Database::prepare(
1098c2e8227SGreg Roach					"INSERT INTO `##block` (gedcom_id, module_name, block_order) VALUES (NULLIF(:tree_id, '0'), :module_name, :block_order)"
110*13abd6f3SGreg Roach				)->execute([
1118c2e8227SGreg Roach					'tree_id'     => Filter::postInteger('gedcom_id'),
1128c2e8227SGreg Roach					'module_name' => $this->getName(),
1138c2e8227SGreg Roach					'block_order' => Filter::postInteger('block_order'),
114*13abd6f3SGreg Roach				]);
1158c2e8227SGreg Roach				$block_id = Database::getInstance()->lastInsertId();
1168c2e8227SGreg Roach			}
117e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'header', Filter::post('header'));
118e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'faqbody', Filter::post('faqbody'));
1198c2e8227SGreg Roach
120c999a340SGreg Roach			$languages = Filter::postArray('lang');
121e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'languages', implode(',', $languages));
122b1d70009SGreg Roach		}
123b1d70009SGreg Roach	}
124b1d70009SGreg Roach
125b1d70009SGreg Roach	/**
126b1d70009SGreg Roach	 * Action from the configuration page
127b1d70009SGreg Roach	 */
128b1d70009SGreg Roach	private function edit() {
129b1d70009SGreg Roach		global $WT_TREE;
130b1d70009SGreg Roach
1318c2e8227SGreg Roach		$controller = new PageController;
132b1d70009SGreg Roach		$controller->restrictAccess(Auth::isAdmin());
133b1d70009SGreg Roach
134b1d70009SGreg Roach			$block_id = Filter::getInteger('block_id');
1358c2e8227SGreg Roach		if ($block_id) {
136b1783ef7SGreg Roach			$controller->setPageTitle(/* I18N: FAQ = “Frequently Asked Question” */ I18N::translate('Edit the FAQ'));
137e2a378d3SGreg Roach			$header      = $this->getBlockSetting($block_id, 'header');
138e2a378d3SGreg Roach			$faqbody     = $this->getBlockSetting($block_id, 'faqbody');
1398c2e8227SGreg Roach			$block_order = Database::prepare(
1408c2e8227SGreg Roach				"SELECT block_order FROM `##block` WHERE block_id = :block_id"
141*13abd6f3SGreg Roach			)->execute(['block_id' => $block_id])->fetchOne();
1428c2e8227SGreg Roach			$gedcom_id   = Database::prepare(
1438c2e8227SGreg Roach				"SELECT gedcom_id FROM `##block` WHERE block_id = :block_id"
144*13abd6f3SGreg Roach			)->execute(['block_id' => $block_id])->fetchOne();
1458c2e8227SGreg Roach		} else {
146b1783ef7SGreg Roach			$controller->setPageTitle(/* I18N: FAQ = “Frequently Asked Question” */ I18N::translate('Add an FAQ'));
1478c2e8227SGreg Roach			$header      = '';
1488c2e8227SGreg Roach			$faqbody     = '';
1498c2e8227SGreg Roach			$block_order = Database::prepare(
1508c2e8227SGreg Roach				"SELECT IFNULL(MAX(block_order)+1, 0) FROM `##block` WHERE module_name = :module_name"
151*13abd6f3SGreg Roach			)->execute(['module_name' => $this->getName()])->fetchOne();
15224ec66ceSGreg Roach			$gedcom_id   = $WT_TREE->getTreeId();
1538c2e8227SGreg Roach		}
1548c2e8227SGreg Roach		$controller->pageHeader();
1558c2e8227SGreg Roach		if (Module::getModuleByName('ckeditor')) {
1568c2e8227SGreg Roach			CkeditorModule::enableEditor($controller);
1578c2e8227SGreg Roach		}
1588c2e8227SGreg Roach
1598c2e8227SGreg Roach		?>
1608c2e8227SGreg Roach		<ol class="breadcrumb small">
1618c2e8227SGreg Roach			<li><a href="admin.php"><?php echo I18N::translate('Control panel'); ?></a></li>
1628c2e8227SGreg Roach			<li><a href="admin_modules.php"><?php echo I18N::translate('Module administration'); ?></a></li>
163b1d70009SGreg Roach			<li><a href="module.php?mod=<?php echo $this->getName(); ?>&mod_action=admin_config"><?php echo I18N::translate('Frequently asked questions'); ?></a>
1644d6c0a77SGreg Roach			</li>
1658c2e8227SGreg Roach			<li class="active"><?php echo $controller->getPageTitle(); ?></li>
1668c2e8227SGreg Roach		</ol>
1674d6c0a77SGreg Roach		<h1><?php echo $controller->getPageTitle(); ?></h1>
1684d6c0a77SGreg Roach
169b1d70009SGreg Roach		<form name="faq" class="form-horizontal" method="post" action="module.php?mod=<?php echo $this->getName(); ?>&amp;mod_action=admin_edit_save">
1704d6c0a77SGreg Roach		<?php echo Filter::getCsrf(); ?>
1714d6c0a77SGreg Roach		<input type="hidden" name="block_id" value="<?php echo $block_id; ?>">
1724d6c0a77SGreg Roach
1734d6c0a77SGreg Roach		<div class="form-group">
1744d6c0a77SGreg Roach			<label for="header" class="col-sm-3 control-label">
1754d6c0a77SGreg Roach				<?php echo I18N::translate('Question'); ?>
1764d6c0a77SGreg Roach			</label>
1774d6c0a77SGreg Roach
1784d6c0a77SGreg Roach			<div class="col-sm-9">
1794d6c0a77SGreg Roach				<input type="text" class="form-control" name="header" id="header"
1804d6c0a77SGreg Roach				       value="<?php echo Filter::escapeHtml($header); ?>">
1814d6c0a77SGreg Roach			</div>
1824d6c0a77SGreg Roach		</div>
1834d6c0a77SGreg Roach
1844d6c0a77SGreg Roach		<div class="form-group">
1854d6c0a77SGreg Roach			<label for="faqbody" class="col-sm-3 control-label">
1864d6c0a77SGreg Roach				<?php echo I18N::translate('Answer'); ?>
1874d6c0a77SGreg Roach			</label>
1884d6c0a77SGreg Roach
1894d6c0a77SGreg Roach			<div class="col-sm-9">
1901643240bSGreg Roach				<textarea name="faqbody" id="faqbody" class="form-control html-edit"
1914d6c0a77SGreg Roach				          rows="10"><?php echo Filter::escapeHtml($faqbody); ?></textarea>
1924d6c0a77SGreg Roach			</div>
1934d6c0a77SGreg Roach		</div>
1944d6c0a77SGreg Roach
1954d6c0a77SGreg Roach		<div class="form-group">
1964d6c0a77SGreg Roach			<label for="xref" class="col-sm-3 control-label">
197a4d5a9c2SGreg Roach				<?php echo /* I18N: Label for a configuration option */ I18N::translate('Show this block for which languages'); ?>
1984d6c0a77SGreg Roach			</label>
1994d6c0a77SGreg Roach
2004d6c0a77SGreg Roach			<div class="col-sm-9">
2013d7a8a4cSGreg Roach				<?php echo FunctionsEdit::editLanguageCheckboxes('lang', explode(',', $this->getBlockSetting($block_id, 'languages'))); ?>
2024d6c0a77SGreg Roach			</div>
2034d6c0a77SGreg Roach		</div>
2044d6c0a77SGreg Roach
2054d6c0a77SGreg Roach		<div class="form-group">
2064d6c0a77SGreg Roach			<label for="block_order" class="col-sm-3 control-label">
207b1783ef7SGreg Roach				<?php echo I18N::translate('Sort order'); ?>
2084d6c0a77SGreg Roach			</label>
2094d6c0a77SGreg Roach
2104d6c0a77SGreg Roach			<div class="col-sm-9">
2114d6c0a77SGreg Roach				<input type="text" name="block_order" id="block_order" class="form-control" value="<?php echo $block_order; ?>">
2124d6c0a77SGreg Roach			</div>
2134d6c0a77SGreg Roach		</div>
2144d6c0a77SGreg Roach
2154d6c0a77SGreg Roach		<div class="form-group">
2164d6c0a77SGreg Roach			<label for="gedcom_id" class="col-sm-3 control-label">
217b1783ef7SGreg Roach				<?php echo I18N::translate('Family tree'); ?>
2184d6c0a77SGreg Roach			</label>
2194d6c0a77SGreg Roach
2204d6c0a77SGreg Roach			<div class="col-sm-9">
2213d7a8a4cSGreg Roach				<?php echo FunctionsEdit::selectEditControl('gedcom_id', Tree::getIdList(), I18N::translate('All'), $gedcom_id, 'class="form-control"'); ?>
2224d6c0a77SGreg Roach				<p class="small text-muted">
223b1783ef7SGreg Roach					<?php echo /* I18N: FAQ = “Frequently Asked Question” */ I18N::translate('An FAQ can be displayed on just one of the family trees, or on all the family trees.'); ?>
2244d6c0a77SGreg Roach				</p>
2254d6c0a77SGreg Roach			</div>
2264d6c0a77SGreg Roach		</div>
2274d6c0a77SGreg Roach
2284d6c0a77SGreg Roach		<div class="form-group">
2294d6c0a77SGreg Roach			<div class="col-sm-offset-3 col-sm-9">
2304d6c0a77SGreg Roach				<button type="submit" class="btn btn-primary">
2314d6c0a77SGreg Roach					<i class="fa fa-check"></i>
2324d6c0a77SGreg Roach					<?php echo I18N::translate('save'); ?>
2334d6c0a77SGreg Roach				</button>
2344d6c0a77SGreg Roach			</div>
2354d6c0a77SGreg Roach		</div>
2364d6c0a77SGreg Roach
2374d6c0a77SGreg Roach	</form>
2388c2e8227SGreg Roach	<?php
2398c2e8227SGreg Roach	}
2408c2e8227SGreg Roach
2418c2e8227SGreg Roach	/**
242b1783ef7SGreg Roach	 * Delete an FAQ.
2438c2e8227SGreg Roach	 */
2448c2e8227SGreg Roach	private function delete() {
2458c2e8227SGreg Roach		$block_id = Filter::getInteger('block_id');
2468c2e8227SGreg Roach
2478c2e8227SGreg Roach		Database::prepare(
2488c2e8227SGreg Roach			"DELETE FROM `##block_setting` WHERE block_id = :block_id"
249*13abd6f3SGreg Roach		)->execute(['block_id' => $block_id]);
2508c2e8227SGreg Roach
2518c2e8227SGreg Roach		Database::prepare(
2528c2e8227SGreg Roach			"DELETE FROM `##block` WHERE block_id = :block_id"
253*13abd6f3SGreg Roach		)->execute(['block_id' => $block_id]);
2548c2e8227SGreg Roach	}
2558c2e8227SGreg Roach
2568c2e8227SGreg Roach	/**
257b1783ef7SGreg Roach	 * Move an FAQ up the list.
2588c2e8227SGreg Roach	 */
2598c2e8227SGreg Roach	private function moveup() {
2608c2e8227SGreg Roach		$block_id = Filter::getInteger('block_id');
2618c2e8227SGreg Roach
2628c2e8227SGreg Roach		$block_order = Database::prepare(
2638c2e8227SGreg Roach			"SELECT block_order FROM `##block` WHERE block_id = :block_id"
264*13abd6f3SGreg Roach		)->execute(['block_id' => $block_id])->fetchOne();
2658c2e8227SGreg Roach
2668c2e8227SGreg Roach		$swap_block = Database::prepare(
2678c2e8227SGreg Roach			"SELECT block_order, block_id" .
2688c2e8227SGreg Roach			" FROM `##block`" .
2698c2e8227SGreg Roach			" WHERE block_order = (" .
2708c2e8227SGreg Roach			"  SELECT MAX(block_order) FROM `##block` WHERE block_order < :block_order AND module_name = :module_name_1" .
2718c2e8227SGreg Roach			" ) AND module_name = :module_name_2" .
2728c2e8227SGreg Roach			" LIMIT 1"
273*13abd6f3SGreg Roach		)->execute([
2748c2e8227SGreg Roach			'block_order'   => $block_order,
2758c2e8227SGreg Roach			'module_name_1' => $this->getName(),
276cbc1590aSGreg Roach			'module_name_2' => $this->getName(),
277*13abd6f3SGreg Roach		])->fetchOneRow();
2788c2e8227SGreg Roach		if ($swap_block) {
2798c2e8227SGreg Roach			Database::prepare(
2808c2e8227SGreg Roach				"UPDATE `##block` SET block_order = :block_order WHERE block_id = :block_id"
281*13abd6f3SGreg Roach			)->execute([
2828c2e8227SGreg Roach				'block_order' => $swap_block->block_order,
2838c2e8227SGreg Roach				'block_id'    => $block_id,
284*13abd6f3SGreg Roach			]);
2858c2e8227SGreg Roach			Database::prepare(
2868c2e8227SGreg Roach				"UPDATE `##block` SET block_order = :block_order WHERE block_id = :block_id"
287*13abd6f3SGreg Roach			)->execute([
2888c2e8227SGreg Roach				'block_order' => $block_order,
2898c2e8227SGreg Roach				'block_id'    => $swap_block->block_id,
290*13abd6f3SGreg Roach			]);
2918c2e8227SGreg Roach		}
2928c2e8227SGreg Roach	}
2938c2e8227SGreg Roach
2948c2e8227SGreg Roach	/**
295b1783ef7SGreg Roach	 * Move an FAQ down the list.
2968c2e8227SGreg Roach	 */
2978c2e8227SGreg Roach	private function movedown() {
2988c2e8227SGreg Roach		$block_id = Filter::get('block_id');
2998c2e8227SGreg Roach
3008c2e8227SGreg Roach		$block_order = Database::prepare(
3018c2e8227SGreg Roach			"SELECT block_order FROM `##block` WHERE block_id = :block_id"
302*13abd6f3SGreg Roach		)->execute([
3038c2e8227SGreg Roach			'block_id' => $block_id,
304*13abd6f3SGreg Roach		])->fetchOne();
3058c2e8227SGreg Roach
3068c2e8227SGreg Roach		$swap_block = Database::prepare(
3078c2e8227SGreg Roach			"SELECT block_order, block_id" .
3088c2e8227SGreg Roach			" FROM `##block`" .
3098c2e8227SGreg Roach			" WHERE block_order=(" .
3108c2e8227SGreg Roach			"  SELECT MIN(block_order) FROM `##block` WHERE block_order > :block_order AND module_name = :module_name_1" .
3118c2e8227SGreg Roach			" ) AND module_name = :module_name_2" .
3128c2e8227SGreg Roach			" LIMIT 1"
313*13abd6f3SGreg Roach		)->execute([
3148c2e8227SGreg Roach			'block_order'   => $block_order,
3158c2e8227SGreg Roach			'module_name_1' => $this->getName(),
3168c2e8227SGreg Roach			'module_name_2' => $this->getName(),
317*13abd6f3SGreg Roach			])->fetchOneRow();
3188c2e8227SGreg Roach		if ($swap_block) {
3198c2e8227SGreg Roach			Database::prepare(
3208c2e8227SGreg Roach				"UPDATE `##block` SET block_order = :block_order WHERE block_id = :block_id"
321*13abd6f3SGreg Roach			)->execute([
3228c2e8227SGreg Roach				'block_order' => $swap_block->block_order,
3238c2e8227SGreg Roach				'block_id'    => $block_id,
324*13abd6f3SGreg Roach			]);
3258c2e8227SGreg Roach			Database::prepare(
3268c2e8227SGreg Roach				"UPDATE `##block` SET block_order = :block_order WHERE block_id = :block_id"
327*13abd6f3SGreg Roach			)->execute([
3288c2e8227SGreg Roach				'block_order' => $block_order,
3298c2e8227SGreg Roach				'block_id'    => $swap_block->block_id,
330*13abd6f3SGreg Roach			]);
3318c2e8227SGreg Roach		}
3328c2e8227SGreg Roach	}
3338c2e8227SGreg Roach
3348c2e8227SGreg Roach	/**
3358c2e8227SGreg Roach	 * Show a list of FAQs
3368c2e8227SGreg Roach	 */
3378c2e8227SGreg Roach	private function show() {
3384b9ff166SGreg Roach		global $controller, $WT_TREE;
3394b9ff166SGreg Roach
3408c2e8227SGreg Roach		$controller = new PageController;
3418c2e8227SGreg Roach		$controller
3428c2e8227SGreg Roach			->setPageTitle(I18N::translate('Frequently asked questions'))
3438c2e8227SGreg Roach			->pageHeader();
3448c2e8227SGreg Roach
3458c2e8227SGreg Roach		$faqs = Database::prepare(
3468c2e8227SGreg Roach			"SELECT block_id, bs1.setting_value AS header, bs2.setting_value AS body, bs3.setting_value AS languages" .
3478c2e8227SGreg Roach			" FROM `##block` b" .
3488c2e8227SGreg Roach			" JOIN `##block_setting` bs1 USING (block_id)" .
3498c2e8227SGreg Roach			" JOIN `##block_setting` bs2 USING (block_id)" .
3508c2e8227SGreg Roach			" JOIN `##block_setting` bs3 USING (block_id)" .
3518c2e8227SGreg Roach			" WHERE module_name = :module_name" .
3528c2e8227SGreg Roach			" AND bs1.setting_name = 'header'" .
3538c2e8227SGreg Roach			" AND bs2.setting_name = 'faqbody'" .
3548c2e8227SGreg Roach			" AND bs3.setting_name = 'languages'" .
3558c2e8227SGreg Roach			" AND IFNULL(gedcom_id, :tree_id_1) = :tree_id_2" .
3568c2e8227SGreg Roach			" ORDER BY block_order"
357*13abd6f3SGreg Roach		)->execute([
3588c2e8227SGreg Roach			'module_name' => $this->getName(),
35924ec66ceSGreg Roach			'tree_id_1'   => $WT_TREE->getTreeId(),
36024ec66ceSGreg Roach			'tree_id_2'   => $WT_TREE->getTreeId(),
361*13abd6f3SGreg Roach		])->fetchAll();
3628c2e8227SGreg Roach
3632a277e58SGreg Roach		echo '<h2 class="center">', I18N::translate('Frequently asked questions');
3644b9ff166SGreg Roach		if (Auth::isManager($WT_TREE)) {
3652a277e58SGreg Roach			echo ' — <a href="module.php?mod=', $this->getName(), '&amp;mod_action=admin_config">', I18N::translate('edit'), '</a>';
3668c2e8227SGreg Roach		}
3672a277e58SGreg Roach		echo '</h2>';
3688c2e8227SGreg Roach		$row_count = 0;
3698c2e8227SGreg Roach		echo '<table class="faq">';
3708c2e8227SGreg Roach		// List of titles
3718c2e8227SGreg Roach		foreach ($faqs as $id => $faq) {
3728c2e8227SGreg Roach			if (!$faq->languages || in_array(WT_LOCALE, explode(',', $faq->languages))) {
3738c2e8227SGreg Roach				$row_color = ($row_count % 2) ? 'odd' : 'even';
3748c2e8227SGreg Roach				// NOTE: Print the header of the current item
3758c2e8227SGreg Roach				echo '<tr class="', $row_color, '"><td style="padding: 5px;">';
3768c2e8227SGreg Roach				echo '<a href="#faq', $id, '">', $faq->header, '</a>';
3778c2e8227SGreg Roach				echo '</td></tr>';
3788c2e8227SGreg Roach				$row_count++;
3798c2e8227SGreg Roach			}
3808c2e8227SGreg Roach		}
3818c2e8227SGreg Roach		echo '</table><hr>';
3828c2e8227SGreg Roach		// Detailed entries
3838c2e8227SGreg Roach		foreach ($faqs as $id => $faq) {
3848c2e8227SGreg Roach			if (!$faq->languages || in_array(WT_LOCALE, explode(',', $faq->languages))) {
3858c2e8227SGreg Roach				echo '<div class="faq_title" id="faq', $id, '">', $faq->header;
3868c2e8227SGreg Roach				echo '<div class="faq_top faq_italic">';
3878c2e8227SGreg Roach				echo '<a href="#content">', I18N::translate('back to top'), '</a>';
3888c2e8227SGreg Roach				echo '</div>';
3898c2e8227SGreg Roach				echo '</div>';
3908c2e8227SGreg Roach				echo '<div class="faq_body">', substr($faq->body, 0, 1) == '<' ? $faq->body : nl2br($faq->body, false), '</div>';
3918c2e8227SGreg Roach				echo '<hr>';
3928c2e8227SGreg Roach			}
3938c2e8227SGreg Roach		}
3948c2e8227SGreg Roach	}
3958c2e8227SGreg Roach
3968c2e8227SGreg Roach	/**
3978c2e8227SGreg Roach	 * Provide a form to manage the FAQs.
3988c2e8227SGreg Roach	 */
3998c2e8227SGreg Roach	private function config() {
40024ec66ceSGreg Roach		global $WT_TREE;
40124ec66ceSGreg Roach
4028c2e8227SGreg Roach		$controller = new PageController;
4038c2e8227SGreg Roach		$controller
404da3772f8SJustCarmen			->restrictAccess(Auth::isAdmin())
4058c2e8227SGreg Roach			->setPageTitle(I18N::translate('Frequently asked questions'))
4068c2e8227SGreg Roach			->pageHeader();
4078c2e8227SGreg Roach
4088c2e8227SGreg Roach		$faqs = Database::prepare(
4098c2e8227SGreg Roach			"SELECT block_id, block_order, gedcom_id, bs1.setting_value AS header, bs2.setting_value AS faqbody" .
4108c2e8227SGreg Roach			" FROM `##block` b" .
4118c2e8227SGreg Roach			" JOIN `##block_setting` bs1 USING (block_id)" .
4128c2e8227SGreg Roach			" JOIN `##block_setting` bs2 USING (block_id)" .
4138c2e8227SGreg Roach			" WHERE module_name = :module_name" .
4148c2e8227SGreg Roach			" AND bs1.setting_name = 'header'" .
4158c2e8227SGreg Roach			" AND bs2.setting_name = 'faqbody'" .
4168c2e8227SGreg Roach			" AND IFNULL(gedcom_id, :tree_id_1) = :tree_id_2" .
4178c2e8227SGreg Roach			" ORDER BY block_order"
418*13abd6f3SGreg Roach		)->execute([
4198c2e8227SGreg Roach			'module_name' => $this->getName(),
42024ec66ceSGreg Roach			'tree_id_1'   => $WT_TREE->getTreeId(),
42124ec66ceSGreg Roach			'tree_id_2'   => $WT_TREE->getTreeId(),
422*13abd6f3SGreg Roach			])->fetchAll();
4238c2e8227SGreg Roach
4248c2e8227SGreg Roach		$min_block_order = Database::prepare(
425ee928960SGreg Roach			"SELECT MIN(block_order) FROM `##block` WHERE module_name = 'faq' AND (gedcom_id = :tree_id OR gedcom_id IS NULL)"
426*13abd6f3SGreg Roach		)->execute([
4274d6c0a77SGreg Roach			'tree_id' => $WT_TREE->getTreeId(),
428*13abd6f3SGreg Roach		])->fetchOne();
4298c2e8227SGreg Roach
4308c2e8227SGreg Roach		$max_block_order = Database::prepare(
431ee928960SGreg Roach			"SELECT MAX(block_order) FROM `##block` WHERE module_name = 'faq' AND (gedcom_id = :tree_id OR gedcom_id IS NULL)"
432*13abd6f3SGreg Roach		)->execute([
4334d6c0a77SGreg Roach			'tree_id' => $WT_TREE->getTreeId(),
434*13abd6f3SGreg Roach		])->fetchOne();
4358c2e8227SGreg Roach
4368c2e8227SGreg Roach		?>
4378c2e8227SGreg Roach		<ol class="breadcrumb small">
4388c2e8227SGreg Roach			<li><a href="admin.php"><?php echo I18N::translate('Control panel'); ?></a></li>
4398c2e8227SGreg Roach			<li><a href="admin_modules.php"><?php echo I18N::translate('Module administration'); ?></a></li>
4408c2e8227SGreg Roach			<li class="active"><?php echo $controller->getPageTitle(); ?></li>
4418c2e8227SGreg Roach		</ol>
4428c2e8227SGreg Roach		<h2><?php echo $controller->getPageTitle(); ?></h2>
4438c2e8227SGreg Roach		<p>
444b1783ef7SGreg Roach			<?php echo /* I18N: FAQ = “Frequently Asked Question” */ I18N::translate('FAQs are lists of questions and answers, which allow you to explain the site’s rules, policies, and procedures to your visitors. Questions are typically concerned with privacy, copyright, user-accounts, unsuitable content, requirement for source-citations, etc.'); ?>
4458c2e8227SGreg Roach			<?php echo I18N::translate('You may use HTML to format the answer and to add links to other websites.'); ?>
4468c2e8227SGreg Roach		</p>
447b1783ef7SGreg Roach
448b1783ef7SGreg Roach		<p>
44907231e86SGreg Roach			<form class="form form-inline">
45007231e86SGreg Roach				<label for="ged" class="sr-only">
45107231e86SGreg Roach					<?php echo I18N::translate('Family tree'); ?>
45207231e86SGreg Roach				</label>
45307231e86SGreg Roach				<input type="hidden" name="mod" value="<?php echo  $this->getName(); ?>">
45407231e86SGreg Roach				<input type="hidden" name="mod_action" value="admin_config">
45507231e86SGreg Roach				<?php echo FunctionsEdit::selectEditControl('ged', Tree::getNameList(), null, $WT_TREE->getName(), 'class="form-control"'); ?>
45607231e86SGreg Roach				<input type="submit" class="btn btn-primary" value="<?php echo I18N::translate('show'); ?>">
45707231e86SGreg Roach			</form>
458b1783ef7SGreg Roach		</p>
45907231e86SGreg Roach
46007231e86SGreg Roach		<p>
46107231e86SGreg Roach			<a href="module.php?mod=<?php echo $this->getName(); ?>&amp;mod_action=admin_edit" class="btn btn-default">
46207231e86SGreg Roach				<i class="fa fa-plus"></i>
463b1783ef7SGreg Roach				<?php echo /* I18N: FAQ = “Frequently Asked Question” */ I18N::translate('Add an FAQ'); ?>
46407231e86SGreg Roach			</a>
46507231e86SGreg Roach		</p>
46607231e86SGreg Roach
4678c2e8227SGreg Roach		<?php
4684d6c0a77SGreg Roach		echo '<table class="table table-bordered">';
4698c2e8227SGreg Roach		foreach ($faqs as $faq) {
4708c2e8227SGreg Roach			// NOTE: Print the position of the current item
4718c2e8227SGreg Roach			echo '<tr class="faq_edit_pos"><td>';
4724d6c0a77SGreg Roach			echo I18N::translate('#%s', $faq->block_order + 1), ' ';
4733a7d762dSGreg Roach			if ($faq->gedcom_id === null) {
4748c2e8227SGreg Roach				echo I18N::translate('All');
4758c2e8227SGreg Roach			} else {
476f306ecacSDavid Drury				echo $WT_TREE->getTitleHtml();
4778c2e8227SGreg Roach			}
4788c2e8227SGreg Roach			echo '</td>';
4798c2e8227SGreg Roach			// NOTE: Print the edit options of the current item
4808c2e8227SGreg Roach			echo '<td>';
4818c2e8227SGreg Roach			if ($faq->block_order == $min_block_order) {
4828c2e8227SGreg Roach				echo '&nbsp;';
4838c2e8227SGreg Roach			} else {
4844d6c0a77SGreg Roach				echo '<a href="module.php?mod=', $this->getName(), '&amp;mod_action=admin_moveup&amp;block_id=', $faq->block_id, '"><i class="fa fa-arrow-up"></i></i> ', I18N::translate('Move up'), '</a>';
4858c2e8227SGreg Roach			}
4868c2e8227SGreg Roach			echo '</td><td>';
4878c2e8227SGreg Roach			if ($faq->block_order == $max_block_order) {
4888c2e8227SGreg Roach				echo '&nbsp;';
4898c2e8227SGreg Roach			} else {
4904d6c0a77SGreg Roach				echo '<a href="module.php?mod=', $this->getName(), '&amp;mod_action=admin_movedown&amp;block_id=', $faq->block_id, '"><i class="fa fa-arrow-down"></i></i> ', I18N::translate('Move down'), '</a>';
4918c2e8227SGreg Roach			}
4928c2e8227SGreg Roach			echo '</td><td>';
4934d6c0a77SGreg Roach			echo '<a href="module.php?mod=', $this->getName(), '&amp;mod_action=admin_edit&amp;block_id=', $faq->block_id, '"><i class="fa fa-pencil"></i> ', I18N::translate('Edit'), '</a>';
4948c2e8227SGreg Roach			echo '</td><td>';
495727fa558SGreg Roach			echo '<a href="module.php?mod=', $this->getName(), '&amp;mod_action=admin_delete&amp;block_id=', $faq->block_id, '" onclick="return confirm(\'', I18N::translate('Are you sure you want to delete “%s”?', Filter::escapeHtml($faq->header)), '\');"><i class="fa fa-trash"></i> ', I18N::translate('Delete'), '</a>';
4968c2e8227SGreg Roach			echo '</td></tr>';
4978c2e8227SGreg Roach			// NOTE: Print the title text of the current item
4988c2e8227SGreg Roach			echo '<tr><td colspan="5">';
4998c2e8227SGreg Roach			echo '<div class="faq_edit_item">';
5008c2e8227SGreg Roach			echo '<div class="faq_edit_title">', $faq->header, '</div>';
5018c2e8227SGreg Roach			// NOTE: Print the body text of the current item
5028c2e8227SGreg Roach			echo '<div class="faq_edit_content">', substr($faq->faqbody, 0, 1) == '<' ? $faq->faqbody : nl2br($faq->faqbody, false), '</div></div></td></tr>';
5038c2e8227SGreg Roach		}
5048c2e8227SGreg Roach		echo '</table>';
5058c2e8227SGreg Roach	}
5068c2e8227SGreg Roach
5070ee13198SGreg Roach	/**
5080ee13198SGreg Roach	 * The user can re-order menus. Until they do, they are shown in this order.
5090ee13198SGreg Roach	 *
5100ee13198SGreg Roach	 * @return int
5110ee13198SGreg Roach	 */
5128c2e8227SGreg Roach	public function defaultMenuOrder() {
5138c2e8227SGreg Roach		return 40;
5148c2e8227SGreg Roach	}
5158c2e8227SGreg Roach
5160ee13198SGreg Roach	/**
5170ee13198SGreg Roach	 * A menu, to be added to the main application menu.
5180ee13198SGreg Roach	 *
5190ee13198SGreg Roach	 * @return Menu|null
5200ee13198SGreg Roach	 */
5218c2e8227SGreg Roach	public function getMenu() {
52224ec66ceSGreg Roach		global $WT_TREE;
52324ec66ceSGreg Roach
5248c2e8227SGreg Roach		$faqs = Database::prepare(
5252b6675d7SGreg Roach			"SELECT block_id FROM `##block`" .
5262b6675d7SGreg Roach			" JOIN `##block_setting` USING (block_id)" .
5272b6675d7SGreg Roach			" WHERE module_name = :module_name AND IFNULL(gedcom_id, :tree_id_1) = :tree_id_2" .
5282b6675d7SGreg Roach			" AND setting_name='languages' AND (setting_value LIKE CONCAT('%', :locale, '%') OR setting_value='')"
529*13abd6f3SGreg Roach		)->execute([
5308c2e8227SGreg Roach			'module_name' => $this->getName(),
53124ec66ceSGreg Roach			'tree_id_1'   => $WT_TREE->getTreeId(),
53224ec66ceSGreg Roach			'tree_id_2'   => $WT_TREE->getTreeId(),
5332b6675d7SGreg Roach			'locale'      => WT_LOCALE,
534*13abd6f3SGreg Roach		])->fetchAll();
5358c2e8227SGreg Roach
53638a9583bSGreg Roach		if ($faqs) {
537b1783ef7SGreg Roach			return new Menu($this->getTitle(), 'module.php?mod=faq&amp;mod_action=show', 'menu-help');
53838a9583bSGreg Roach		} else {
5398c2e8227SGreg Roach			return null;
5408c2e8227SGreg Roach		}
5418c2e8227SGreg Roach
5428c2e8227SGreg Roach	}
5438c2e8227SGreg Roach}
544