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; 233d7a8a4cSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsPrint; 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() . '&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=?" 918c2e8227SGreg Roach )->execute(array( 928c2e8227SGreg Roach $this->getName(), 938c2e8227SGreg Roach $controller->record->getXref(), 94cbc1590aSGreg Roach $controller->record->getTree()->getTreeId(), 958c2e8227SGreg 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() . '&mod_action=admin_edit&block_id=' . $block_id . '">'; 106*cdc90107SGreg 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() . '&mod_action=admin_edit&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=?" 1358c2e8227SGreg Roach )->execute(array( 1368c2e8227SGreg Roach $this->getName(), 1378c2e8227SGreg Roach $controller->record->getXref(), 138cbc1590aSGreg Roach $controller->record->getTree()->getTreeId(), 1398c2e8227SGreg 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=?" 1668c2e8227SGreg Roach )->execute(array(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 (?, ?, ?, ?)" 1708c2e8227SGreg Roach )->execute(array( 1718c2e8227SGreg Roach Filter::postInteger('gedcom_id'), 1728c2e8227SGreg Roach Filter::post('xref', WT_REGEX_XREF), 1738c2e8227SGreg Roach $this->getName(), 174cbc1590aSGreg Roach 0, 1758c2e8227SGreg 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) { 188*cdc90107SGreg 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=?" 1938c2e8227SGreg Roach )->execute(array($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 } 2008c2e8227SGreg Roach $controller 2018c2e8227SGreg Roach ->pageHeader() 2028c2e8227SGreg Roach ->addExternalJavascript(WT_AUTOCOMPLETE_JS_URL) 2038c2e8227SGreg Roach ->addInlineJavascript('autocomplete();'); 2048c2e8227SGreg Roach if (Module::getModuleByName('ckeditor')) { 2058c2e8227SGreg Roach CkeditorModule::enableEditor($controller); 2068c2e8227SGreg Roach } 2078c2e8227SGreg Roach 208691beab6SGreg Roach $individual = Individual::getInstance($xref, $WT_TREE); 209691beab6SGreg Roach 2108c2e8227SGreg Roach ?> 2118c2e8227SGreg Roach <ol class="breadcrumb small"> 2128c2e8227SGreg Roach <li><a href="admin.php"><?php echo I18N::translate('Control panel'); ?></a></li> 2138c2e8227SGreg Roach <li><a href="admin_modules.php"><?php echo I18N::translate('Module administration'); ?></a></li> 2148c2e8227SGreg Roach <li><a href="module.php?mod=<?php echo $this->getName(); ?>&mod_action=admin_config"><?php echo $this->getTitle(); ?></a></li> 2158c2e8227SGreg Roach <li class="active"><?php echo $controller->getPageTitle(); ?></li> 2168c2e8227SGreg Roach </ol> 2178c2e8227SGreg Roach 2188c2e8227SGreg Roach <h1><?php echo $controller->getPageTitle(); ?></h1> 2198c2e8227SGreg Roach 220691beab6SGreg Roach <form class="form-horizontal" method="post" action="module.php?mod=<?php echo $this->getName(); ?>&mod_action=admin_edit"> 221691beab6SGreg Roach <?php echo Filter::getCsrf(); ?> 222691beab6SGreg Roach <input type="hidden" name="save" value="1"> 223691beab6SGreg Roach <input type="hidden" name="block_id" value="<?php echo $block_id; ?>"> 224691beab6SGreg Roach <input type="hidden" name="gedcom_id" value="<?php echo $WT_TREE->getTreeId(); ?>"> 225691beab6SGreg Roach 226691beab6SGreg Roach <div class="form-group"> 227691beab6SGreg Roach <label for="title" class="col-sm-3 control-label"> 228691beab6SGreg Roach <?php echo I18N::translate('Story title'); ?> 229691beab6SGreg Roach </label> 230691beab6SGreg Roach <div class="col-sm-9"> 231691beab6SGreg Roach <input type="text" class="form-control" name="title" id="title" value="<?php echo Filter::escapeHtml($title); ?>"> 232691beab6SGreg Roach </div> 233691beab6SGreg Roach </div> 234691beab6SGreg Roach 235691beab6SGreg Roach <div class="form-group"> 236691beab6SGreg Roach <label for="story_body" class="col-sm-3 control-label"> 237691beab6SGreg Roach <?php echo I18N::translate('Story'); ?> 238691beab6SGreg Roach </label> 239691beab6SGreg Roach <div class="col-sm-9"> 240691beab6SGreg Roach <textarea name="story_body" id="story_body" class="html-edit form-control" rows="10"><?php echo Filter::escapeHtml($story_body); ?></textarea> 241691beab6SGreg Roach </div> 242691beab6SGreg Roach </div> 243691beab6SGreg Roach 244691beab6SGreg Roach <div class="form-group"> 245691beab6SGreg Roach <label for="xref" class="col-sm-3 control-label"> 246691beab6SGreg Roach <?php echo I18N::translate('Individual'); ?> 247691beab6SGreg Roach </label> 248691beab6SGreg Roach <div class="col-sm-9"> 249691beab6SGreg Roach <input data-autocomplete-type="INDI" type="text" name="xref" id="xref" size="4" value="<?php echo $xref; ?>"> 2503d7a8a4cSGreg Roach <?php echo FunctionsPrint::printFindIndividualLink('xref'); ?> 251691beab6SGreg Roach <?php if ($individual): ?> 252691beab6SGreg Roach <?php echo $individual->formatList('span'); ?> 253691beab6SGreg Roach <?php endif; ?> 254691beab6SGreg Roach </div> 255691beab6SGreg Roach </div> 256691beab6SGreg Roach 257691beab6SGreg Roach <div class="form-group"> 258691beab6SGreg Roach <label for="xref" class="col-sm-3 control-label"> 259a4d5a9c2SGreg Roach <?php echo I18N::translate('Show this block for which languages'); ?> 260691beab6SGreg Roach </label> 261691beab6SGreg Roach <div class="col-sm-9"> 2623d7a8a4cSGreg Roach <?php echo FunctionsEdit::editLanguageCheckboxes('lang', explode(',', $this->getBlockSetting($block_id, 'languages'))); ?> 263691beab6SGreg Roach </div> 264691beab6SGreg Roach </div> 265691beab6SGreg Roach 266691beab6SGreg Roach <div class="form-group"> 267691beab6SGreg Roach <div class="col-sm-offset-3 col-sm-9"> 268691beab6SGreg Roach <button type="submit" class="btn btn-primary"> 269691beab6SGreg Roach <i class="fa fa-check"></i> 270691beab6SGreg Roach <?php echo I18N::translate('save'); ?> 271691beab6SGreg Roach </button> 272691beab6SGreg Roach </div> 273691beab6SGreg Roach </div> 274691beab6SGreg Roach 275691beab6SGreg Roach </form> 276691beab6SGreg Roach <?php 2778c2e8227SGreg Roach } 2788c2e8227SGreg Roach } else { 2798c2e8227SGreg Roach header('Location: ' . WT_BASE_URL); 2808c2e8227SGreg Roach } 2818c2e8227SGreg Roach } 2828c2e8227SGreg Roach 2838c2e8227SGreg Roach /** 2848c2e8227SGreg Roach * Respond to a request to delete a story. 2858c2e8227SGreg Roach */ 2868c2e8227SGreg Roach private function delete() { 2874b9ff166SGreg Roach global $WT_TREE; 2884b9ff166SGreg Roach 2894b9ff166SGreg Roach if (Auth::isEditor($WT_TREE)) { 2908c2e8227SGreg Roach $block_id = Filter::getInteger('block_id'); 2918c2e8227SGreg Roach 2928c2e8227SGreg Roach Database::prepare( 2938c2e8227SGreg Roach "DELETE FROM `##block_setting` WHERE block_id=?" 2948c2e8227SGreg Roach )->execute(array($block_id)); 2958c2e8227SGreg Roach 2968c2e8227SGreg Roach Database::prepare( 2978c2e8227SGreg Roach "DELETE FROM `##block` WHERE block_id=?" 2988c2e8227SGreg Roach )->execute(array($block_id)); 2998c2e8227SGreg Roach } else { 3008c2e8227SGreg Roach header('Location: ' . WT_BASE_URL); 3018c2e8227SGreg Roach exit; 3028c2e8227SGreg Roach } 3038c2e8227SGreg Roach } 3048c2e8227SGreg Roach 3058c2e8227SGreg Roach /** 3068c2e8227SGreg Roach * The admin view - list, create, edit, delete stories. 3078c2e8227SGreg Roach */ 3088c2e8227SGreg Roach private function config() { 30924ec66ceSGreg Roach global $WT_TREE; 31024ec66ceSGreg Roach 3118c2e8227SGreg Roach $controller = new PageController; 3128c2e8227SGreg Roach $controller 3134b9ff166SGreg Roach ->restrictAccess(Auth::isAdmin()) 3148c2e8227SGreg Roach ->setPageTitle($this->getTitle()) 3158c2e8227SGreg Roach ->pageHeader() 3168c2e8227SGreg Roach ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) 3178c2e8227SGreg Roach ->addExternalJavascript(WT_DATATABLES_BOOTSTRAP_JS_URL) 3188c2e8227SGreg Roach ->addInlineJavascript(' 3198c2e8227SGreg Roach jQuery("#story_table").dataTable({ 3208c2e8227SGreg Roach ' . I18N::datatablesI18N() . ', 3218c2e8227SGreg Roach autoWidth: false, 3228c2e8227SGreg Roach paging: true, 3238c2e8227SGreg Roach pagingType: "full_numbers", 3248c2e8227SGreg Roach lengthChange: true, 3258c2e8227SGreg Roach filter: true, 3268c2e8227SGreg Roach info: true, 3278c2e8227SGreg Roach sorting: [[0,"asc"]], 3288c2e8227SGreg Roach columns: [ 3298c2e8227SGreg Roach /* 0-name */ null, 3308c2e8227SGreg Roach /* 1-NAME */ null, 3318c2e8227SGreg Roach /* 2-NAME */ { sortable:false }, 3328c2e8227SGreg Roach /* 3-NAME */ { sortable:false } 3338c2e8227SGreg Roach ] 3348c2e8227SGreg Roach }); 3358c2e8227SGreg Roach '); 3368c2e8227SGreg Roach 3378c2e8227SGreg Roach $stories = Database::prepare( 3388c2e8227SGreg Roach "SELECT block_id, xref" . 3398c2e8227SGreg Roach " FROM `##block` b" . 3408c2e8227SGreg Roach " WHERE module_name=?" . 3418c2e8227SGreg Roach " AND gedcom_id=?" . 3428c2e8227SGreg Roach " ORDER BY xref" 34324ec66ceSGreg Roach )->execute(array($this->getName(), $WT_TREE->getTreeId()))->fetchAll(); 3448c2e8227SGreg Roach 3458c2e8227SGreg Roach ?> 3468c2e8227SGreg Roach <ol class="breadcrumb small"> 3478c2e8227SGreg Roach <li><a href="admin.php"><?php echo I18N::translate('Control panel'); ?></a></li> 3488c2e8227SGreg Roach <li><a href="admin_modules.php"><?php echo I18N::translate('Module administration'); ?></a></li> 3498c2e8227SGreg Roach <li class="active"><?php echo $controller->getPageTitle(); ?></li> 3508c2e8227SGreg Roach </ol> 3518c2e8227SGreg Roach 3528c2e8227SGreg Roach <h1><?php echo $controller->getPageTitle(); ?></h1> 3538c2e8227SGreg Roach 3548c2e8227SGreg Roach <form class="form form-inline"> 3558c2e8227SGreg Roach <label for="ged" class="sr-only"> 3568c2e8227SGreg Roach <?php echo I18N::translate('Family tree'); ?> 3578c2e8227SGreg Roach </label> 3588c2e8227SGreg Roach <input type="hidden" name="mod" value="<?php echo $this->getName(); ?>"> 3598c2e8227SGreg Roach <input type="hidden" name="mod_action" value="admin_config"> 3603d7a8a4cSGreg Roach <?php echo FunctionsEdit::selectEditControl('ged', Tree::getNameList(), null, $WT_TREE->getName(), 'class="form-control"'); ?> 3618c2e8227SGreg Roach <input type="submit" class="btn btn-primary" value="<?php echo I18N::translate('show'); ?>"> 3628c2e8227SGreg Roach </form> 3638c2e8227SGreg Roach 3648c2e8227SGreg Roach <p> 3658c2e8227SGreg Roach <a href="module.php?mod=<?php echo $this->getName(); ?>&mod_action=admin_edit" class="btn btn-default"> 3668c2e8227SGreg Roach <i class="fa fa-plus"></i> 3678c2e8227SGreg Roach <?php echo I18N::translate('Add a story'); ?> 3688c2e8227SGreg Roach </a> 3698c2e8227SGreg Roach </p> 3708c2e8227SGreg Roach 3718c2e8227SGreg Roach <table class="table table-bordered table-condensed"> 3728c2e8227SGreg Roach <thead> 3738c2e8227SGreg Roach <tr> 3748c2e8227SGreg Roach <th><?php echo I18N::translate('Story title'); ?></th> 3758c2e8227SGreg Roach <th><?php echo I18N::translate('Individual'); ?></th> 3768c2e8227SGreg Roach <th><?php echo I18N::translate('Edit'); ?></th> 3778c2e8227SGreg Roach <th><?php echo I18N::translate('Delete'); ?></th> 3788c2e8227SGreg Roach </tr> 3798c2e8227SGreg Roach </thead> 3808c2e8227SGreg Roach <tbody> 3818c2e8227SGreg Roach <?php foreach ($stories as $story): ?> 3828c2e8227SGreg Roach <tr> 3838c2e8227SGreg Roach <td> 384e2a378d3SGreg Roach <?php echo Filter::escapeHtml($this->getBlockSetting($story->block_id, 'title')); ?> 3858c2e8227SGreg Roach </td> 3868c2e8227SGreg Roach <td> 387691beab6SGreg Roach <?php $individual = Individual::getInstance($story->xref, $WT_TREE); ?> 388691beab6SGreg Roach <?php if ($individual): ?> 389691beab6SGreg Roach <a href="<?php echo $individual->getHtmlUrl(); ?>#stories"> 390691beab6SGreg Roach <?php echo $individual->getFullName(); ?> 3918c2e8227SGreg Roach </a> 3928c2e8227SGreg Roach <?php else: ?> 3938c2e8227SGreg Roach <?php echo $story->xref; ?> 3948c2e8227SGreg Roach <?php endif; ?> 3958c2e8227SGreg Roach </td> 3968c2e8227SGreg Roach <td> 3978c2e8227SGreg Roach <a href="module.php?mod=<?php echo $this->getName(); ?>&mod_action=admin_edit&block_id=<?php echo $story->block_id; ?>"> 39807231e86SGreg Roach <i class="fa fa-pencil"></i> <?php echo I18N::translate('Edit'); ?> 3998c2e8227SGreg Roach </a> 4008c2e8227SGreg Roach </td> 4018c2e8227SGreg Roach <td> 4028c2e8227SGreg Roach <a 4038c2e8227SGreg Roach href="module.php?mod=<?php echo $this->getName(); ?>&mod_action=admin_delete&block_id=<?php echo $story->block_id; ?>" 404727fa558SGreg Roach onclick="return confirm('<?php echo I18N::translate('Are you sure you want to delete “%s”?', Filter::escapeHtml($this->getBlockSetting($story->block_id, 'title'))); ?>');" 4058c2e8227SGreg Roach > 40607231e86SGreg Roach <i class="fa fa-trash"></i> <?php echo I18N::translate('Delete'); ?> 4078c2e8227SGreg Roach </a> 4088c2e8227SGreg Roach </td> 4098c2e8227SGreg Roach </tr> 4108c2e8227SGreg Roach <?php endforeach; ?> 4118c2e8227SGreg Roach </tbody> 4128c2e8227SGreg Roach </table> 4138c2e8227SGreg Roach <?php 4148c2e8227SGreg Roach } 4158c2e8227SGreg Roach 4168c2e8227SGreg Roach /** 4178c2e8227SGreg Roach * Show the list of stories 4188c2e8227SGreg Roach */ 4198c2e8227SGreg Roach private function showList() { 42024ec66ceSGreg Roach global $controller, $WT_TREE; 4218c2e8227SGreg Roach 4228c2e8227SGreg Roach $controller = new PageController; 4238c2e8227SGreg Roach $controller 4248c2e8227SGreg Roach ->setPageTitle($this->getTitle()) 4258c2e8227SGreg Roach ->pageHeader() 4268c2e8227SGreg Roach ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) 4278c2e8227SGreg Roach ->addInlineJavascript(' 4288c2e8227SGreg Roach jQuery("#story_table").dataTable({ 4298c2e8227SGreg Roach dom: \'<"H"pf<"dt-clear">irl>t<"F"pl>\', 4308c2e8227SGreg Roach ' . I18N::datatablesI18N() . ', 4318c2e8227SGreg Roach autoWidth: false, 4328c2e8227SGreg Roach paging: true, 4338c2e8227SGreg Roach pagingType: "full_numbers", 4348c2e8227SGreg Roach lengthChange: true, 4358c2e8227SGreg Roach filter: true, 4368c2e8227SGreg Roach info: true, 4378c2e8227SGreg Roach jQueryUI: true, 4388c2e8227SGreg Roach sorting: [[0,"asc"]], 4398c2e8227SGreg Roach columns: [ 4408c2e8227SGreg Roach /* 0-name */ null, 4418c2e8227SGreg Roach /* 1-NAME */ null 4428c2e8227SGreg Roach ] 4438c2e8227SGreg Roach }); 4448c2e8227SGreg Roach '); 4458c2e8227SGreg Roach 4468c2e8227SGreg Roach $stories = Database::prepare( 4478c2e8227SGreg Roach "SELECT block_id, xref" . 4488c2e8227SGreg Roach " FROM `##block` b" . 4498c2e8227SGreg Roach " WHERE module_name=?" . 4508c2e8227SGreg Roach " AND gedcom_id=?" . 4518c2e8227SGreg Roach " ORDER BY xref" 45224ec66ceSGreg Roach )->execute(array($this->getName(), $WT_TREE->getTreeId()))->fetchAll(); 4538c2e8227SGreg Roach 4548c2e8227SGreg Roach echo '<h2 class="center">', I18N::translate('Stories'), '</h2>'; 4558c2e8227SGreg Roach if (count($stories) > 0) { 4568c2e8227SGreg Roach echo '<table id="story_table" class="width100">'; 4578c2e8227SGreg Roach echo '<thead><tr> 4588c2e8227SGreg Roach <th>', I18N::translate('Story title'), '</th> 4598c2e8227SGreg Roach <th>', I18N::translate('Individual'), '</th> 4608c2e8227SGreg Roach </tr></thead> 4618c2e8227SGreg Roach <tbody>'; 4628c2e8227SGreg Roach foreach ($stories as $story) { 46324ec66ceSGreg Roach $indi = Individual::getInstance($story->xref, $WT_TREE); 464e2a378d3SGreg Roach $story_title = $this->getBlockSetting($story->block_id, 'title'); 465e2a378d3SGreg Roach $languages = $this->getBlockSetting($story->block_id, 'languages'); 4668c2e8227SGreg Roach if (!$languages || in_array(WT_LOCALE, explode(',', $languages))) { 4678c2e8227SGreg Roach if ($indi) { 4688c2e8227SGreg Roach if ($indi->canShow()) { 4698c2e8227SGreg Roach echo '<tr><td><a href="' . $indi->getHtmlUrl() . '#stories">' . $story_title . '</a></td><td><a href="' . $indi->getHtmlUrl() . '#stories">' . $indi->getFullName() . '</a></td></tr>'; 4708c2e8227SGreg Roach } 4718c2e8227SGreg Roach } else { 4728c2e8227SGreg Roach echo '<tr><td>', $story_title, '</td><td class="error">', $story->xref, '</td></tr>'; 4738c2e8227SGreg Roach } 4748c2e8227SGreg Roach } 4758c2e8227SGreg Roach } 4768c2e8227SGreg Roach echo '</tbody></table>'; 4778c2e8227SGreg Roach } 4788c2e8227SGreg Roach } 4798c2e8227SGreg Roach 4800ee13198SGreg Roach /** 4810ee13198SGreg Roach * The user can re-order menus. Until they do, they are shown in this order. 4820ee13198SGreg Roach * 4830ee13198SGreg Roach * @return int 4840ee13198SGreg Roach */ 4858c2e8227SGreg Roach public function defaultMenuOrder() { 4868c2e8227SGreg Roach return 30; 4878c2e8227SGreg Roach } 4888c2e8227SGreg Roach 4890ee13198SGreg Roach /** 4900ee13198SGreg Roach * What is the default access level for this module? 4910ee13198SGreg Roach * 4920ee13198SGreg Roach * Some modules are aimed at admins or managers, and are not generally shown to users. 4930ee13198SGreg Roach * 4940ee13198SGreg Roach * @return int 4950ee13198SGreg Roach */ 4968c2e8227SGreg Roach public function defaultAccessLevel() { 4974b9ff166SGreg Roach return Auth::PRIV_HIDE; 4988c2e8227SGreg Roach } 4998c2e8227SGreg Roach 5000ee13198SGreg Roach /** 5010ee13198SGreg Roach * A menu, to be added to the main application menu. 5020ee13198SGreg Roach * 5030ee13198SGreg Roach * @return Menu|null 5040ee13198SGreg Roach */ 5058c2e8227SGreg Roach public function getMenu() { 5068c2e8227SGreg Roach $menu = new Menu($this->getTitle(), 'module.php?mod=' . $this->getName() . '&mod_action=show_list', 'menu-story'); 5078c2e8227SGreg Roach 5088c2e8227SGreg Roach return $menu; 5098c2e8227SGreg Roach } 5108c2e8227SGreg Roach} 511