.
*/
/**
* Class review_changes_WT_Module
*/
class review_changes_WT_Module extends Module implements ModuleBlockInterface {
/** {@inheritdoc} */
public function getTitle() {
return /* I18N: Name of a module */ I18N::translate('Pending changes');
}
/** {@inheritdoc} */
public function getDescription() {
return /* I18N: Description of the “Pending changes” module */ I18N::translate('A list of changes that need moderator approval, and email notifications.');
}
/** {@inheritdoc} */
public function getBlock($block_id, $template = true, $cfg = null) {
global $ctype;
$sendmail = get_block_setting($block_id, 'sendmail', '1');
$days = get_block_setting($block_id, 'days', '1');
$block = get_block_setting($block_id, 'block', '1');
if ($cfg) {
foreach (array('days', 'sendmail', 'block') as $name) {
if (array_key_exists($name, $cfg)) {
$$name = $cfg[$name];
}
}
}
$changes = Database::prepare(
"SELECT 1" .
" FROM `##change`" .
" WHERE status='pending'" .
" LIMIT 1"
)->fetchOne();
if ($changes && $sendmail == 'yes') {
// There are pending changes - tell moderators/managers/administrators about them.
if (WT_TIMESTAMP - Site::getPreference('LAST_CHANGE_EMAIL') > (60 * 60 * 24 * $days)) {
// Which users have pending changes?
foreach (User::all() as $user) {
if ($user->getPreference('contactmethod') !== 'none') {
foreach (Tree::getAll() as $tree) {
if (exists_pending_change($user, $tree)) {
I18N::init($user->getPreference('language'));
Mail::systemMessage(
$tree,
$user,
I18N::translate('Pending changes'),
I18N::translate('There are pending changes for you to moderate.') .
Mail::EOL . Mail::EOL .
'' . WT_BASE_URL . 'index.php?ged=' . WT_GEDURL . ''
);
I18N::init(WT_LOCALE);
}
}
}
}
Site::setPreference('LAST_CHANGE_EMAIL', WT_TIMESTAMP);
}
}
if (WT_USER_CAN_EDIT) {
$id = $this->getName() . $block_id;
$class = $this->getName() . '_block';
if ($ctype === 'gedcom' && WT_USER_GEDCOM_ADMIN || $ctype === 'user' && Auth::check()) {
$title = '';
} else {
$title = '';
}
$title .= $this->getTitle();
$content = '';
if (WT_USER_CAN_ACCEPT) {
$content .= "" . I18N::translate('There are pending changes for you to moderate.') . "
";
}
if ($sendmail == "yes") {
$content .= I18N::translate('Last email reminder was sent ') . format_timestamp(Site::getPreference('LAST_CHANGE_EMAIL')) . "
";
$content .= I18N::translate('Next email reminder will be sent after ') . format_timestamp(Site::getPreference('LAST_CHANGE_EMAIL') + (60 * 60 * 24 * $days)) . "
";
}
$changes = Database::prepare(
"SELECT xref" .
" FROM `##change`" .
" WHERE status='pending'" .
" AND gedcom_id=?" .
" GROUP BY xref"
)->execute(array(WT_GED_ID))->fetchAll();
foreach ($changes as $change) {
$record = GedcomRecord::getInstance($change->xref);
if ($record->canShow()) {
$content .= '' . $record->getFullName() . '';
$content .= $block ? '
' : ' ';
$content .= '' . I18N::translate('View the changes') . '';
$content .= '
';
}
}
if ($template) {
if ($block) {
$class .= ' small_inner_block';
}
return Theme::theme()->formatBlock($id, $title, $class, $content);
} else {
return $content;
}
}
}
/** {@inheritdoc} */
public function loadAjax() {
return false;
}
/** {@inheritdoc} */
public function isUserBlock() {
return true;
}
/** {@inheritdoc} */
public function isGedcomBlock() {
return true;
}
/** {@inheritdoc} */
public function configureBlock($block_id) {
if (Filter::postBool('save') && Filter::checkCsrf()) {
set_block_setting($block_id, 'days', Filter::postInteger('num', 1, 180, 1));
set_block_setting($block_id, 'sendmail', Filter::postBool('sendmail'));
set_block_setting($block_id, 'block', Filter::postBool('block'));
}
$sendmail = get_block_setting($block_id, 'sendmail', '1');
$days = get_block_setting($block_id, 'days', '1');
$block = get_block_setting($block_id, 'block', '1');
?>