.
*/
/**
* Class FamilyTreeNewsModule
*/
class FamilyTreeNewsModule extends AbstractModule implements ModuleBlockInterface {
/** {@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 .= '