xref: /webtrees/app/Module/FrequentlyAskedQuestionsModule.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 FrequentlyAskedQuestionsModule
218c2e8227SGreg Roach */
22e2a378d3SGreg Roachclass FrequentlyAskedQuestionsModule extends AbstractModule implements ModuleMenuInterface, ModuleConfigInterface {
238c2e8227SGreg Roach	/** {@inheritdoc} */
248c2e8227SGreg Roach	public function getTitle() {
258c2e8227SGreg Roach		return /* I18N: Name of a module.  Abbreviation for “Frequently Asked Questions” */ I18N::translate('FAQ');
268c2e8227SGreg Roach	}
278c2e8227SGreg Roach
288c2e8227SGreg Roach	/** {@inheritdoc} */
298c2e8227SGreg Roach	public function getDescription() {
308c2e8227SGreg Roach		return /* I18N: Description of the “FAQ” module */ I18N::translate('A list of frequently asked questions and answers.');
318c2e8227SGreg Roach	}
328c2e8227SGreg Roach
338c2e8227SGreg Roach	/** {@inheritdoc} */
348c2e8227SGreg Roach	public function modAction($mod_action) {
358c2e8227SGreg Roach		switch ($mod_action) {
368c2e8227SGreg Roach		case 'admin_config':
378c2e8227SGreg Roach			$this->config();
388c2e8227SGreg Roach			break;
398c2e8227SGreg Roach		case 'admin_delete':
408c2e8227SGreg Roach			$this->delete();
418c2e8227SGreg Roach			$this->config();
428c2e8227SGreg Roach			break;
438c2e8227SGreg Roach		case 'admin_edit':
448c2e8227SGreg Roach			$this->edit();
458c2e8227SGreg Roach			break;
468c2e8227SGreg Roach		case 'admin_movedown':
478c2e8227SGreg Roach			$this->movedown();
488c2e8227SGreg Roach			$this->config();
498c2e8227SGreg Roach			break;
508c2e8227SGreg Roach		case 'admin_moveup':
518c2e8227SGreg Roach			$this->moveup();
528c2e8227SGreg Roach			$this->config();
538c2e8227SGreg Roach			break;
548c2e8227SGreg Roach		case 'show':
558c2e8227SGreg Roach			$this->show();
568c2e8227SGreg Roach			break;
578c2e8227SGreg Roach		default:
588c2e8227SGreg Roach			http_response_code(404);
598c2e8227SGreg Roach		}
608c2e8227SGreg Roach	}
618c2e8227SGreg Roach
628c2e8227SGreg Roach	/** {@inheritdoc} */
638c2e8227SGreg Roach	public function getConfigLink() {
648c2e8227SGreg Roach		return 'module.php?mod=' . $this->getName() . '&amp;mod_action=admin_config';
658c2e8227SGreg Roach	}
668c2e8227SGreg Roach
678c2e8227SGreg Roach	/**
688c2e8227SGreg Roach	 * Action from the configuration page
698c2e8227SGreg Roach	 */
708c2e8227SGreg Roach	private function edit() {
7124ec66ceSGreg Roach		global $WT_TREE;
7224ec66ceSGreg Roach
738c2e8227SGreg Roach		if (Filter::postBool('save') && Filter::checkCsrf()) {
748c2e8227SGreg Roach			$block_id = Filter::postInteger('block_id');
758c2e8227SGreg Roach			if ($block_id) {
768c2e8227SGreg Roach				Database::prepare(
778c2e8227SGreg Roach					"UPDATE `##block` SET gedcom_id = NULLIF(:tree_id, '0'), block_order = :block_order WHERE block_id = :block_id"
788c2e8227SGreg Roach				)->execute(array(
798c2e8227SGreg Roach					'tree_id'     => Filter::postInteger('gedcom_id'),
808c2e8227SGreg Roach					'block_order' => Filter::postInteger('block_order'),
81*cbc1590aSGreg Roach					'block_id'    => $block_id,
828c2e8227SGreg Roach				));
838c2e8227SGreg Roach			} else {
848c2e8227SGreg Roach				Database::prepare(
858c2e8227SGreg Roach					"INSERT INTO `##block` (gedcom_id, module_name, block_order) VALUES (NULLIF(:tree_id, '0'), :module_name, :block_order)"
868c2e8227SGreg Roach				)->execute(array(
878c2e8227SGreg Roach					'tree_id'     => Filter::postInteger('gedcom_id'),
888c2e8227SGreg Roach					'module_name' => $this->getName(),
898c2e8227SGreg Roach					'block_order' => Filter::postInteger('block_order'),
908c2e8227SGreg Roach				));
918c2e8227SGreg Roach				$block_id = Database::getInstance()->lastInsertId();
928c2e8227SGreg Roach			}
93e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'header', Filter::post('header'));
94e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'faqbody', Filter::post('faqbody'));
958c2e8227SGreg Roach
96c999a340SGreg Roach			$languages = Filter::postArray('lang');
97e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'languages', implode(',', $languages));
988c2e8227SGreg Roach			$this->config();
998c2e8227SGreg Roach		} else {
1008c2e8227SGreg Roach			$block_id   = Filter::getInteger('block_id');
1018c2e8227SGreg Roach			$controller = new PageController;
1028c2e8227SGreg Roach			if ($block_id) {
1038c2e8227SGreg Roach				$controller->setPageTitle(I18N::translate('Edit FAQ item'));
104e2a378d3SGreg Roach				$header      = $this->getBlockSetting($block_id, 'header');
105e2a378d3SGreg Roach				$faqbody     = $this->getBlockSetting($block_id, 'faqbody');
1068c2e8227SGreg Roach				$block_order = Database::prepare(
1078c2e8227SGreg Roach					"SELECT block_order FROM `##block` WHERE block_id = :block_id"
1088c2e8227SGreg Roach				)->execute(array('block_id' => $block_id))->fetchOne();
1098c2e8227SGreg Roach				$gedcom_id   = Database::prepare(
1108c2e8227SGreg Roach					"SELECT gedcom_id FROM `##block` WHERE block_id = :block_id"
1118c2e8227SGreg Roach				)->execute(array('block_id' => $block_id))->fetchOne();
1128c2e8227SGreg Roach			} else {
1138c2e8227SGreg Roach				$controller->setPageTitle(I18N::translate('Add an FAQ item'));
1148c2e8227SGreg Roach				$header      = '';
1158c2e8227SGreg Roach				$faqbody     = '';
1168c2e8227SGreg Roach				$block_order = Database::prepare(
1178c2e8227SGreg Roach					"SELECT IFNULL(MAX(block_order)+1, 0) FROM `##block` WHERE module_name = :module_name"
1188c2e8227SGreg Roach				)->execute(array('module_name' => $this->getName()))->fetchOne();
11924ec66ceSGreg Roach				$gedcom_id   = $WT_TREE->getTreeId();
1208c2e8227SGreg Roach			}
1218c2e8227SGreg Roach			$controller->pageHeader();
1228c2e8227SGreg Roach			if (Module::getModuleByName('ckeditor')) {
1238c2e8227SGreg Roach				CkeditorModule::enableEditor($controller);
1248c2e8227SGreg Roach			}
1258c2e8227SGreg Roach
1268c2e8227SGreg Roach			?>
1278c2e8227SGreg Roach			<ol class="breadcrumb small">
1288c2e8227SGreg Roach				<li><a href="admin.php"><?php echo I18N::translate('Control panel'); ?></a></li>
1298c2e8227SGreg Roach				<li><a href="admin_modules.php"><?php echo I18N::translate('Module administration'); ?></a></li>
1304d6c0a77SGreg Roach				<li><a
1314d6c0a77SGreg Roach						href="module.php?mod=<?php echo $this->getName(); ?>&mod_action=admin_config"><?php echo I18N::translate('Frequently asked questions'); ?></a>
1324d6c0a77SGreg Roach				</li>
1338c2e8227SGreg Roach				<li class="active"><?php echo $controller->getPageTitle(); ?></li>
1348c2e8227SGreg Roach			</ol>
1354d6c0a77SGreg Roach			<h1><?php echo $controller->getPageTitle(); ?></h1>
1364d6c0a77SGreg Roach
1374d6c0a77SGreg Roach			<form name="faq" class="form-horizontal" method="post" action="module.php?mod=<?php echo $this->getName(); ?>&amp;mod_action=admin_edit">
1384d6c0a77SGreg Roach			<?php echo Filter::getCsrf(); ?>
1394d6c0a77SGreg Roach			<input type="hidden" name="save" value="1">
1404d6c0a77SGreg Roach			<input type="hidden" name="block_id" value="<?php echo $block_id; ?>">
1414d6c0a77SGreg Roach
1424d6c0a77SGreg Roach			<div class="form-group">
1434d6c0a77SGreg Roach				<label for="header" class="col-sm-3 control-label">
1444d6c0a77SGreg Roach					<?php echo I18N::translate('Question'); ?>
1454d6c0a77SGreg Roach				</label>
1464d6c0a77SGreg Roach
1474d6c0a77SGreg Roach				<div class="col-sm-9">
1484d6c0a77SGreg Roach					<input type="text" class="form-control" name="header" id="header"
1494d6c0a77SGreg Roach					       value="<?php echo Filter::escapeHtml($header); ?>">
1504d6c0a77SGreg Roach				</div>
1514d6c0a77SGreg Roach			</div>
1524d6c0a77SGreg Roach
1534d6c0a77SGreg Roach			<div class="form-group">
1544d6c0a77SGreg Roach				<label for="faqbody" class="col-sm-3 control-label">
1554d6c0a77SGreg Roach					<?php echo I18N::translate('Answer'); ?>
1564d6c0a77SGreg Roach				</label>
1574d6c0a77SGreg Roach
1584d6c0a77SGreg Roach				<div class="col-sm-9">
1594d6c0a77SGreg Roach					<textarea name="faqbody" id="faqbody" class="form-control"
1604d6c0a77SGreg Roach					          rows="10"><?php echo Filter::escapeHtml($faqbody); ?></textarea>
1614d6c0a77SGreg Roach				</div>
1624d6c0a77SGreg Roach			</div>
1634d6c0a77SGreg Roach
1644d6c0a77SGreg Roach			<div class="form-group">
1654d6c0a77SGreg Roach				<label for="xref" class="col-sm-3 control-label">
1664d6c0a77SGreg Roach					<?php echo I18N::translate('Show this block for which languages?'); ?>
1674d6c0a77SGreg Roach				</label>
1684d6c0a77SGreg Roach
1694d6c0a77SGreg Roach				<div class="col-sm-9">
1704d6c0a77SGreg Roach					<?php echo edit_language_checkboxes('lang', explode(',', $this->getBlockSetting($block_id, 'languages'))); ?>
1714d6c0a77SGreg Roach				</div>
1724d6c0a77SGreg Roach			</div>
1734d6c0a77SGreg Roach
1744d6c0a77SGreg Roach			<div class="form-group">
1754d6c0a77SGreg Roach				<label for="block_order" class="col-sm-3 control-label">
1764d6c0a77SGreg Roach					<?php echo I18N::translate('FAQ position'); ?>
1774d6c0a77SGreg Roach				</label>
1784d6c0a77SGreg Roach
1794d6c0a77SGreg Roach				<div class="col-sm-9">
1804d6c0a77SGreg Roach					<input type="text" name="block_order" id="block_order" class="form-control" value="<?php echo $block_order; ?>">
1814d6c0a77SGreg Roach				</div>
1824d6c0a77SGreg Roach			</div>
1834d6c0a77SGreg Roach
1844d6c0a77SGreg Roach			<div class="form-group">
1854d6c0a77SGreg Roach				<label for="gedcom_id" class="col-sm-3 control-label">
1864d6c0a77SGreg Roach					<?php echo I18N::translate('FAQ visibility'); ?>
1874d6c0a77SGreg Roach				</label>
1884d6c0a77SGreg Roach
1894d6c0a77SGreg Roach				<div class="col-sm-9">
1904d6c0a77SGreg Roach					<?php echo select_edit_control('gedcom_id', Tree::getIdList(), I18N::translate('All'), $gedcom_id, 'class="form-control"'); ?>
1914d6c0a77SGreg Roach					<p class="small text-muted">
1924d6c0a77SGreg Roach						<?php echo I18N::translate('A FAQ item can be displayed on just one of the family trees, or on all the family trees.'); ?>
1934d6c0a77SGreg Roach					</p>
1944d6c0a77SGreg Roach				</div>
1954d6c0a77SGreg Roach			</div>
1964d6c0a77SGreg Roach
1974d6c0a77SGreg Roach			<div class="form-group">
1984d6c0a77SGreg Roach				<div class="col-sm-offset-3 col-sm-9">
1994d6c0a77SGreg Roach					<button type="submit" class="btn btn-primary">
2004d6c0a77SGreg Roach						<i class="fa fa-check"></i>
2014d6c0a77SGreg Roach						<?php echo I18N::translate('save'); ?>
2024d6c0a77SGreg Roach					</button>
2034d6c0a77SGreg Roach				</div>
2044d6c0a77SGreg Roach			</div>
2054d6c0a77SGreg Roach
2064d6c0a77SGreg Roach		</form>
2078c2e8227SGreg Roach		<?php
2088c2e8227SGreg Roach		}
2098c2e8227SGreg Roach	}
2108c2e8227SGreg Roach
2118c2e8227SGreg Roach	/**
2128c2e8227SGreg Roach	 * Respond to a request to delete a FAQ.
2138c2e8227SGreg Roach	 */
2148c2e8227SGreg Roach	private function delete() {
2158c2e8227SGreg Roach		$block_id = Filter::getInteger('block_id');
2168c2e8227SGreg Roach
2178c2e8227SGreg Roach		Database::prepare(
2188c2e8227SGreg Roach			"DELETE FROM `##block_setting` WHERE block_id = :block_id"
2198c2e8227SGreg Roach		)->execute(array('block_id' => $block_id));
2208c2e8227SGreg Roach
2218c2e8227SGreg Roach		Database::prepare(
2228c2e8227SGreg Roach			"DELETE FROM `##block` WHERE block_id = :block_id"
2238c2e8227SGreg Roach		)->execute(array('block_id' => $block_id));
2248c2e8227SGreg Roach	}
2258c2e8227SGreg Roach
2268c2e8227SGreg Roach	/**
2278c2e8227SGreg Roach	 * Respond to a request to move a FAQ up the list.
2288c2e8227SGreg Roach	 */
2298c2e8227SGreg Roach	private function moveup() {
2308c2e8227SGreg Roach		$block_id = Filter::getInteger('block_id');
2318c2e8227SGreg Roach
2328c2e8227SGreg Roach		$block_order = Database::prepare(
2338c2e8227SGreg Roach			"SELECT block_order FROM `##block` WHERE block_id = :block_id"
2348c2e8227SGreg Roach		)->execute(array('block_id' => $block_id))->fetchOne();
2358c2e8227SGreg Roach
2368c2e8227SGreg Roach		$swap_block = Database::prepare(
2378c2e8227SGreg Roach			"SELECT block_order, block_id" .
2388c2e8227SGreg Roach			" FROM `##block`" .
2398c2e8227SGreg Roach			" WHERE block_order = (" .
2408c2e8227SGreg Roach			"  SELECT MAX(block_order) FROM `##block` WHERE block_order < :block_order AND module_name = :module_name_1" .
2418c2e8227SGreg Roach			" ) AND module_name = :module_name_2" .
2428c2e8227SGreg Roach			" LIMIT 1"
2438c2e8227SGreg Roach		)->execute(array(
2448c2e8227SGreg Roach			'block_order'   => $block_order,
2458c2e8227SGreg Roach			'module_name_1' => $this->getName(),
246*cbc1590aSGreg Roach			'module_name_2' => $this->getName(),
2478c2e8227SGreg Roach		))->fetchOneRow();
2488c2e8227SGreg Roach		if ($swap_block) {
2498c2e8227SGreg Roach			Database::prepare(
2508c2e8227SGreg Roach				"UPDATE `##block` SET block_order = :block_order WHERE block_id = :block_id"
2518c2e8227SGreg Roach			)->execute(array(
2528c2e8227SGreg Roach				'block_order' => $swap_block->block_order,
2538c2e8227SGreg Roach				'block_id'    => $block_id,
2548c2e8227SGreg Roach			));
2558c2e8227SGreg Roach			Database::prepare(
2568c2e8227SGreg Roach				"UPDATE `##block` SET block_order = :block_order WHERE block_id = :block_id"
2578c2e8227SGreg Roach			)->execute(array(
2588c2e8227SGreg Roach				'block_order' => $block_order,
2598c2e8227SGreg Roach				'block_id'    => $swap_block->block_id,
2608c2e8227SGreg Roach			));
2618c2e8227SGreg Roach		}
2628c2e8227SGreg Roach	}
2638c2e8227SGreg Roach
2648c2e8227SGreg Roach	/**
2658c2e8227SGreg Roach	 * Respond to a request to move a FAQ down the list.
2668c2e8227SGreg Roach	 */
2678c2e8227SGreg Roach	private function movedown() {
2688c2e8227SGreg Roach		$block_id = Filter::get('block_id');
2698c2e8227SGreg Roach
2708c2e8227SGreg Roach		$block_order = Database::prepare(
2718c2e8227SGreg Roach			"SELECT block_order FROM `##block` WHERE block_id = :block_id"
2728c2e8227SGreg Roach		)->execute(array(
2738c2e8227SGreg Roach			'block_id' => $block_id,
2748c2e8227SGreg Roach		))->fetchOne();
2758c2e8227SGreg Roach
2768c2e8227SGreg Roach		$swap_block = Database::prepare(
2778c2e8227SGreg Roach			"SELECT block_order, block_id" .
2788c2e8227SGreg Roach			" FROM `##block`" .
2798c2e8227SGreg Roach			" WHERE block_order=(" .
2808c2e8227SGreg Roach			"  SELECT MIN(block_order) FROM `##block` WHERE block_order > :block_order AND module_name = :module_name_1" .
2818c2e8227SGreg Roach			" ) AND module_name = :module_name_2" .
2828c2e8227SGreg Roach			" LIMIT 1"
2838c2e8227SGreg Roach		)->execute(array(
2848c2e8227SGreg Roach			'block_order'   => $block_order,
2858c2e8227SGreg Roach			'module_name_1' => $this->getName(),
2868c2e8227SGreg Roach			'module_name_2' => $this->getName(),
2878c2e8227SGreg Roach			))->fetchOneRow();
2888c2e8227SGreg Roach		if ($swap_block) {
2898c2e8227SGreg Roach			Database::prepare(
2908c2e8227SGreg Roach				"UPDATE `##block` SET block_order = :block_order WHERE block_id = :block_id"
2918c2e8227SGreg Roach			)->execute(array(
2928c2e8227SGreg Roach				'block_order' => $swap_block->block_order,
2938c2e8227SGreg Roach				'block_id'    => $block_id,
2948c2e8227SGreg Roach			));
2958c2e8227SGreg Roach			Database::prepare(
2968c2e8227SGreg Roach				"UPDATE `##block` SET block_order = :block_order WHERE block_id = :block_id"
2978c2e8227SGreg Roach			)->execute(array(
2988c2e8227SGreg Roach				'block_order' => $block_order,
2998c2e8227SGreg Roach				'block_id'    => $swap_block->block_id,
3008c2e8227SGreg Roach			));
3018c2e8227SGreg Roach		}
3028c2e8227SGreg Roach	}
3038c2e8227SGreg Roach
3048c2e8227SGreg Roach	/**
3058c2e8227SGreg Roach	 * Show a list of FAQs
3068c2e8227SGreg Roach	 */
3078c2e8227SGreg Roach	private function show() {
3084b9ff166SGreg Roach		global $controller, $WT_TREE;
3094b9ff166SGreg Roach
3108c2e8227SGreg Roach		$controller = new PageController;
3118c2e8227SGreg Roach		$controller
3128c2e8227SGreg Roach			->setPageTitle(I18N::translate('Frequently asked questions'))
3138c2e8227SGreg Roach			->pageHeader();
3148c2e8227SGreg Roach
3158c2e8227SGreg Roach		$faqs = Database::prepare(
3168c2e8227SGreg Roach			"SELECT block_id, bs1.setting_value AS header, bs2.setting_value AS body, bs3.setting_value AS languages" .
3178c2e8227SGreg Roach			" FROM `##block` b" .
3188c2e8227SGreg Roach			" JOIN `##block_setting` bs1 USING (block_id)" .
3198c2e8227SGreg Roach			" JOIN `##block_setting` bs2 USING (block_id)" .
3208c2e8227SGreg Roach			" JOIN `##block_setting` bs3 USING (block_id)" .
3218c2e8227SGreg Roach			" WHERE module_name = :module_name" .
3228c2e8227SGreg Roach			" AND bs1.setting_name = 'header'" .
3238c2e8227SGreg Roach			" AND bs2.setting_name = 'faqbody'" .
3248c2e8227SGreg Roach			" AND bs3.setting_name = 'languages'" .
3258c2e8227SGreg Roach			" AND IFNULL(gedcom_id, :tree_id_1) = :tree_id_2" .
3268c2e8227SGreg Roach			" ORDER BY block_order"
3278c2e8227SGreg Roach		)->execute(array(
3288c2e8227SGreg Roach			'module_name' => $this->getName(),
32924ec66ceSGreg Roach			'tree_id_1'   => $WT_TREE->getTreeId(),
33024ec66ceSGreg Roach			'tree_id_2'   => $WT_TREE->getTreeId(),
3318c2e8227SGreg Roach		))->fetchAll();
3328c2e8227SGreg Roach
3338c2e8227SGreg Roach		// Define your colors for the alternating rows
3348c2e8227SGreg Roach		echo '<h2 class="center">', I18N::translate('Frequently asked questions'), '</h2>';
3358c2e8227SGreg Roach		// Instructions
33677e70a22SGreg Roach		echo '<div class="faq_italic">', I18N::translate('Click on a title to go straight to it, or scroll down to read them all.');
3374b9ff166SGreg Roach		if (Auth::isManager($WT_TREE)) {
3388c2e8227SGreg Roach			echo '<div class="faq_edit"><a href="module.php?mod=', $this->getName(), '&amp;mod_action=admin_config">', I18N::translate('Click here to add, edit, or delete'), '</a></div>';
3398c2e8227SGreg Roach		}
3408c2e8227SGreg Roach		echo '</div>';
3418c2e8227SGreg Roach		$row_count = 0;
3428c2e8227SGreg Roach		echo '<table class="faq">';
3438c2e8227SGreg Roach		// List of titles
3448c2e8227SGreg Roach		foreach ($faqs as $id => $faq) {
3458c2e8227SGreg Roach			if (!$faq->languages || in_array(WT_LOCALE, explode(',', $faq->languages))) {
3468c2e8227SGreg Roach				$row_color = ($row_count % 2) ? 'odd' : 'even';
3478c2e8227SGreg Roach				// NOTE: Print the header of the current item
3488c2e8227SGreg Roach				echo '<tr class="', $row_color, '"><td style="padding: 5px;">';
3498c2e8227SGreg Roach				echo '<a href="#faq', $id, '">', $faq->header, '</a>';
3508c2e8227SGreg Roach				echo '</td></tr>';
3518c2e8227SGreg Roach				$row_count++;
3528c2e8227SGreg Roach			}
3538c2e8227SGreg Roach		}
3548c2e8227SGreg Roach		echo '</table><hr>';
3558c2e8227SGreg Roach		// Detailed entries
3568c2e8227SGreg Roach		foreach ($faqs as $id => $faq) {
3578c2e8227SGreg Roach			if (!$faq->languages || in_array(WT_LOCALE, explode(',', $faq->languages))) {
3588c2e8227SGreg Roach				echo '<div class="faq_title" id="faq', $id, '">', $faq->header;
3598c2e8227SGreg Roach				echo '<div class="faq_top faq_italic">';
3608c2e8227SGreg Roach				echo '<a href="#content">', I18N::translate('back to top'), '</a>';
3618c2e8227SGreg Roach				echo '</div>';
3628c2e8227SGreg Roach				echo '</div>';
3638c2e8227SGreg Roach				echo '<div class="faq_body">', substr($faq->body, 0, 1) == '<' ? $faq->body : nl2br($faq->body, false), '</div>';
3648c2e8227SGreg Roach				echo '<hr>';
3658c2e8227SGreg Roach			}
3668c2e8227SGreg Roach		}
3678c2e8227SGreg Roach	}
3688c2e8227SGreg Roach
3698c2e8227SGreg Roach	/**
3708c2e8227SGreg Roach	 * Provide a form to manage the FAQs.
3718c2e8227SGreg Roach	 */
3728c2e8227SGreg Roach	private function config() {
37324ec66ceSGreg Roach		global $WT_TREE;
37424ec66ceSGreg Roach
3758c2e8227SGreg Roach		$controller = new PageController;
3768c2e8227SGreg Roach		$controller
3778c2e8227SGreg Roach			->setPageTitle(I18N::translate('Frequently asked questions'))
3788c2e8227SGreg Roach			->pageHeader();
3798c2e8227SGreg Roach
3808c2e8227SGreg Roach		$faqs = Database::prepare(
3818c2e8227SGreg Roach			"SELECT block_id, block_order, gedcom_id, bs1.setting_value AS header, bs2.setting_value AS faqbody" .
3828c2e8227SGreg Roach			" FROM `##block` b" .
3838c2e8227SGreg Roach			" JOIN `##block_setting` bs1 USING (block_id)" .
3848c2e8227SGreg Roach			" JOIN `##block_setting` bs2 USING (block_id)" .
3858c2e8227SGreg Roach			" WHERE module_name = :module_name" .
3868c2e8227SGreg Roach			" AND bs1.setting_name = 'header'" .
3878c2e8227SGreg Roach			" AND bs2.setting_name = 'faqbody'" .
3888c2e8227SGreg Roach			" AND IFNULL(gedcom_id, :tree_id_1) = :tree_id_2" .
3898c2e8227SGreg Roach			" ORDER BY block_order"
3908c2e8227SGreg Roach		)->execute(array(
3918c2e8227SGreg Roach			'module_name' => $this->getName(),
39224ec66ceSGreg Roach			'tree_id_1'   => $WT_TREE->getTreeId(),
39324ec66ceSGreg Roach			'tree_id_2'   => $WT_TREE->getTreeId(),
3948c2e8227SGreg Roach			))->fetchAll();
3958c2e8227SGreg Roach
3968c2e8227SGreg Roach		$min_block_order = Database::prepare(
397ee928960SGreg Roach			"SELECT MIN(block_order) FROM `##block` WHERE module_name = 'faq' AND (gedcom_id = :tree_id OR gedcom_id IS NULL)"
3984d6c0a77SGreg Roach		)->execute(array(
3994d6c0a77SGreg Roach			'tree_id' => $WT_TREE->getTreeId(),
4004d6c0a77SGreg Roach		))->fetchOne();
4018c2e8227SGreg Roach
4028c2e8227SGreg Roach		$max_block_order = Database::prepare(
403ee928960SGreg Roach			"SELECT MAX(block_order) FROM `##block` WHERE module_name = 'faq' AND (gedcom_id = :tree_id OR gedcom_id IS NULL)"
4044d6c0a77SGreg Roach		)->execute(array(
4054d6c0a77SGreg Roach			'tree_id' => $WT_TREE->getTreeId(),
4064d6c0a77SGreg Roach		))->fetchOne();
4078c2e8227SGreg Roach
4088c2e8227SGreg Roach		?>
4098c2e8227SGreg Roach		<ol class="breadcrumb small">
4108c2e8227SGreg Roach			<li><a href="admin.php"><?php echo I18N::translate('Control panel'); ?></a></li>
4118c2e8227SGreg Roach			<li><a href="admin_modules.php"><?php echo I18N::translate('Module administration'); ?></a></li>
4128c2e8227SGreg Roach			<li class="active"><?php echo $controller->getPageTitle(); ?></li>
4138c2e8227SGreg Roach		</ol>
4148c2e8227SGreg Roach		<h2><?php echo $controller->getPageTitle(); ?></h2>
4158c2e8227SGreg Roach		<p>
4168c2e8227SGreg Roach			<?php echo 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.'); ?>
4178c2e8227SGreg Roach			<?php echo I18N::translate('You may use HTML to format the answer and to add links to other websites.'); ?>
4188c2e8227SGreg Roach		</p>
4198c2e8227SGreg Roach		<?php
4208c2e8227SGreg Roach
4218c2e8227SGreg Roach		echo
4228c2e8227SGreg Roach			'<p><form>',
4238c2e8227SGreg Roach			I18N::translate('Family tree'), ' ',
4248c2e8227SGreg Roach			'<input type="hidden" name="mod", value="', $this->getName(), '">',
4258c2e8227SGreg Roach			'<input type="hidden" name="mod_action" value="admin_config">',
42624ec66ceSGreg Roach			select_edit_control('ged', Tree::getNameList(), null, $WT_TREE->getNameHtml()),
4278c2e8227SGreg Roach			'<input type="submit" value="', I18N::translate('show'), '">',
4288c2e8227SGreg Roach			'</form></p>';
4298c2e8227SGreg Roach
4308c2e8227SGreg Roach		echo '<a href="module.php?mod=', $this->getName(), '&amp;mod_action=admin_edit">', I18N::translate('Add an FAQ item'), '</a>';
4318c2e8227SGreg Roach
4324d6c0a77SGreg Roach		echo '<table class="table table-bordered">';
4338c2e8227SGreg Roach		if (empty($faqs)) {
4348c2e8227SGreg Roach			echo '<tr><td class="error center" colspan="5">', I18N::translate('The FAQ list is empty.'), '</td></tr></table>';
4358c2e8227SGreg Roach		} else {
4368c2e8227SGreg Roach			foreach ($faqs as $faq) {
4378c2e8227SGreg Roach				// NOTE: Print the position of the current item
4388c2e8227SGreg Roach				echo '<tr class="faq_edit_pos"><td>';
4394d6c0a77SGreg Roach				echo I18N::translate('#%s', $faq->block_order + 1), ' ';
4408c2e8227SGreg Roach				if ($faq->gedcom_id == null) {
4418c2e8227SGreg Roach					echo I18N::translate('All');
4428c2e8227SGreg Roach				} else {
443f306ecacSDavid Drury					echo $WT_TREE->getTitleHtml();
4448c2e8227SGreg Roach				}
4458c2e8227SGreg Roach				echo '</td>';
4468c2e8227SGreg Roach				// NOTE: Print the edit options of the current item
4478c2e8227SGreg Roach				echo '<td>';
4488c2e8227SGreg Roach				if ($faq->block_order == $min_block_order) {
4498c2e8227SGreg Roach					echo '&nbsp;';
4508c2e8227SGreg Roach				} else {
4514d6c0a77SGreg 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>';
4528c2e8227SGreg Roach				}
4538c2e8227SGreg Roach				echo '</td><td>';
4548c2e8227SGreg Roach				if ($faq->block_order == $max_block_order) {
4558c2e8227SGreg Roach					echo '&nbsp;';
4568c2e8227SGreg Roach				} else {
4574d6c0a77SGreg 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>';
4588c2e8227SGreg Roach				}
4598c2e8227SGreg Roach				echo '</td><td>';
4604d6c0a77SGreg 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>';
4618c2e8227SGreg Roach				echo '</td><td>';
4624d6c0a77SGreg 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 this FAQ entry?'), '\');"><i class="fa fa-trash"></i> ', I18N::translate('Delete'), '</a>';
4638c2e8227SGreg Roach				echo '</td></tr>';
4648c2e8227SGreg Roach				// NOTE: Print the title text of the current item
4658c2e8227SGreg Roach				echo '<tr><td colspan="5">';
4668c2e8227SGreg Roach				echo '<div class="faq_edit_item">';
4678c2e8227SGreg Roach				echo '<div class="faq_edit_title">', $faq->header, '</div>';
4688c2e8227SGreg Roach				// NOTE: Print the body text of the current item
4698c2e8227SGreg Roach				echo '<div class="faq_edit_content">', substr($faq->faqbody, 0, 1) == '<' ? $faq->faqbody : nl2br($faq->faqbody, false), '</div></div></td></tr>';
4708c2e8227SGreg Roach			}
4718c2e8227SGreg Roach			echo '</table>';
4728c2e8227SGreg Roach		}
4738c2e8227SGreg Roach	}
4748c2e8227SGreg Roach
4758c2e8227SGreg Roach	/** {@inheritdoc} */
4768c2e8227SGreg Roach	public function defaultMenuOrder() {
4778c2e8227SGreg Roach		return 40;
4788c2e8227SGreg Roach	}
4798c2e8227SGreg Roach
4808c2e8227SGreg Roach	/** {@inheritdoc} */
4818c2e8227SGreg Roach	public function getMenu() {
48224ec66ceSGreg Roach		global $WT_TREE;
48324ec66ceSGreg Roach
4848c2e8227SGreg Roach		if (Auth::isSearchEngine()) {
4858c2e8227SGreg Roach			return null;
4868c2e8227SGreg Roach		}
4878c2e8227SGreg Roach
4888c2e8227SGreg Roach		$faqs = Database::prepare(
4898c2e8227SGreg Roach			"SELECT block_id FROM `##block` WHERE module_name = :module_name AND IFNULL(gedcom_id, :tree_id_1) = :tree_id_2"
4908c2e8227SGreg Roach		)->execute(array(
4918c2e8227SGreg Roach			'module_name' => $this->getName(),
49224ec66ceSGreg Roach			'tree_id_1'   => $WT_TREE->getTreeId(),
49324ec66ceSGreg Roach			'tree_id_2'   => $WT_TREE->getTreeId(),
4948c2e8227SGreg Roach		))->fetchAll();
4958c2e8227SGreg Roach
4968c2e8227SGreg Roach		if (!$faqs) {
4978c2e8227SGreg Roach			return null;
4988c2e8227SGreg Roach		}
4998c2e8227SGreg Roach
5008c2e8227SGreg Roach		$menu = new Menu(I18N::translate('FAQ'), 'module.php?mod=faq&amp;mod_action=show', 'menu-help');
5018c2e8227SGreg Roach
5028c2e8227SGreg Roach		return $menu;
5038c2e8227SGreg Roach	}
5048c2e8227SGreg Roach}
505