. */ use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\Database; use Fisharebest\Webtrees\Filter; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Theme; /** * Class FamilyTreeNewsModule */ class FamilyTreeNewsModule extends AbstractModule implements ModuleBlockInterface { /** {@inheritdoc} */ public function __construct($directory) { parent::__construct($directory); // Create/update the database tables. Database::updateSchema('\Fisharebest\Webtrees\Module\FamilyTreeNews\Schema', 'NB_SCHEMA_VERSION', 3); } /** {@inheritdoc} */ public function getTitle() { return /* I18N: Name of a module */ I18N::translate('News'); } /** {@inheritdoc} */ public function getDescription() { return /* I18N: Description of the “GEDCOM News” module */ I18N::translate('Family news and site announcements.'); } /** {@inheritdoc} */ public function getBlock($block_id, $template = true, $cfg = null) { global $ctype, $WT_TREE; switch (Filter::get('action')) { case 'deletenews': $news_id = Filter::get('news_id'); if ($news_id) { Database::prepare("DELETE FROM `##news` WHERE news_id = ?")->execute(array($news_id)); } break; } if (isset($_REQUEST['gedcom_news_archive'])) { $limit = 'nolimit'; $flag = '0'; } else { $flag = $this->getBlockSetting($block_id, 'flag', 0); if ($flag === '0') { $limit = 'nolimit'; } else { $limit = $this->getBlockSetting($block_id, 'limit', 'nolimit'); } } if ($cfg) { foreach (array('limit', 'flag') as $name) { if (array_key_exists($name, $cfg)) { $$name = $cfg[$name]; } } } $usernews = Database::prepare( "SELECT SQL_CACHE news_id, user_id, gedcom_id, UNIX_TIMESTAMP(updated) AS updated, subject, body FROM `##news` WHERE gedcom_id=? ORDER BY updated DESC" )->execute(array($WT_TREE->getTreeId()))->fetchAll(); $id = $this->getName() . $block_id; $class = $this->getName() . '_block'; if ($ctype === 'gedcom' && Auth::isManager($WT_TREE) || $ctype === 'user' && Auth::check()) { $title = ''; } else { $title = ''; } $title .= $this->getTitle(); $content = ''; if (count($usernews) == 0) { $content .= I18N::translate('No news articles have been submitted.') . '
'; } $c = 0; foreach ($usernews as $news) { if ($limit == 'count') { if ($c >= $flag) { break; } $c++; } if ($limit == 'date') { if ((int) ((WT_TIMESTAMP - $news->updated) / 86400) > $flag) { break; } } $content .= '
'; $content .= '
' . Filter::escapeHtml($news->subject) . '
'; $content .= '
' . format_timestamp($news->updated) . '
'; if ($news->body == strip_tags($news->body)) { $news->body = nl2br($news->body, false); } $content .= $news->body; // Print Admin options for this News item if (Auth::isManager($WT_TREE)) { $content .= '
' . '' . I18N::translate('Edit') . ' | ' . '" . I18N::translate('Delete') . '
'; } $content .= '
'; } $printedAddLink = false; if (Auth::isManager($WT_TREE)) { $content .= "getTreeId() . "', '_blank', news_window_specs); return false;\">" . I18N::translate('Add a news article') . ""; $printedAddLink = true; } if ($limit == 'date' || $limit == 'count') { if ($printedAddLink) { $content .= '  |  '; } $content .= '' . I18N::translate('View archive') . ""; $content .= help_link('gedcom_news_archive') . '
'; } if ($template) { return Theme::theme()->formatBlock($id, $title, $class, $content); } else { return $content; } } /** {@inheritdoc} */ public function loadAjax() { return false; } /** {@inheritdoc} */ public function isUserBlock() { return false; } /** {@inheritdoc} */ public function isGedcomBlock() { return true; } /** {@inheritdoc} */ public function configureBlock($block_id) { if (Filter::postBool('save') && Filter::checkCsrf()) { $this->setBlockSetting($block_id, 'limit', Filter::post('limit')); $this->setBlockSetting($block_id, 'flag', Filter::post('flag')); } $limit = $this->getBlockSetting($block_id, 'limit', 'nolimit'); $flag = $this->getBlockSetting($block_id, 'flag', 0); echo '', /* I18N: Limit display by [age/number] */ I18N::translate('Limit display by'), ''; echo ''; echo I18N::translate('Limit'); echo ''; } }