. */ namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\Filter; use Fisharebest\Webtrees\Functions\FunctionsDb; use Fisharebest\Webtrees\Functions\FunctionsEdit; use Fisharebest\Webtrees\GedcomTag; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Theme; use Rhumsaa\Uuid\Uuid; /** * Class ResearchTaskModule */ class ResearchTaskModule extends AbstractModule implements ModuleBlockInterface { /** {@inheritdoc} */ public function getTitle() { return /* I18N: Name of a module. Tasks that need further research. */ I18N::translate('Research tasks'); } /** {@inheritdoc} */ public function getDescription() { return /* I18N: Description of “Research tasks” module */ I18N::translate('A list of tasks and activities that are linked to the family tree.'); } /** * Generate the HTML content of this block. * * @param int $block_id * @param bool $template * @param array $cfg * * @return string */ public function getBlock($block_id, $template = true, $cfg = array()) { global $ctype, $controller, $WT_TREE; $show_other = $this->getBlockSetting($block_id, 'show_other', '1'); $show_unassigned = $this->getBlockSetting($block_id, 'show_unassigned', '1'); $show_future = $this->getBlockSetting($block_id, 'show_future', '1'); $block = $this->getBlockSetting($block_id, 'block', '1'); foreach (array('show_unassigned', 'show_other', 'show_future', 'block') as $name) { if (array_key_exists($name, $cfg)) { $$name = $cfg[$name]; } } $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(); $table_id = Uuid::uuid4(); // create a unique ID $controller ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) ->addInlineJavascript(' jQuery("#' . $table_id . '").dataTable({ dom: \'t\', ' . I18N::datatablesI18N() . ', autoWidth: false, paginate: false, lengthChange: false, filter: false, info: true, jQueryUI: true, columns: [ /* 0-DATE */ { visible: false }, /* 1-Date */ { dataSort: 0 }, /* 1-Record */ null, /* 2-Username */ null, /* 3-Text */ null ] }); jQuery("#' . $table_id . '").css("visibility", "visible"); jQuery(".loading-image").css("display", "none"); '); $content = ''; $content .= '
 
'; $content .= ''; $content .= ''; $content .= ''; //hidden by datables code $content .= ''; $content .= ''; if ($show_unassigned || $show_other) { $content .= ''; } $content .= ''; $content .= ''; $found = false; $end_jd = $show_future ? 99999999 : WT_CLIENT_JD; foreach (FunctionsDb::getCalendarEvents(0, $end_jd, '_TODO', $WT_TREE) as $fact) { $record = $fact->getParent(); $user_name = $fact->getAttribute('_WT_USER'); if ($user_name === Auth::user()->getUserName() || !$user_name && $show_unassigned || $user_name && $show_other) { $content .= ''; //-- Event date (sortable) $content .= ''; $content .= ''; $content .= ''; if ($show_unassigned || $show_other) { $content .= ''; } $text = $fact->getValue(); $content .= ''; $content .= ''; $found = true; } } $content .= ''; if (!$found) { $content .= '

' . I18N::translate('There are no research tasks in this family tree.') . '

'; } 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; } /** * An HTML form to edit block settings * * @param int $block_id */ public function configureBlock($block_id) { if (Filter::postBool('save') && Filter::checkCsrf()) { $this->setBlockSetting($block_id, 'show_other', Filter::postBool('show_other')); $this->setBlockSetting($block_id, 'show_unassigned', Filter::postBool('show_unassigned')); $this->setBlockSetting($block_id, 'show_future', Filter::postBool('show_future')); $this->setBlockSetting($block_id, 'block', Filter::postBool('block')); } $show_other = $this->getBlockSetting($block_id, 'show_other', '1'); $show_unassigned = $this->getBlockSetting($block_id, 'show_unassigned', '1'); $show_future = $this->getBlockSetting($block_id, 'show_future', '1'); $block = $this->getBlockSetting($block_id, 'block', '1'); ?> '; echo I18N::translate('Show research tasks that are assigned to other users'); echo ''; echo FunctionsEdit::editFieldYesNo('show_other', $show_other); echo ''; echo ''; echo I18N::translate('Show research tasks that are not assigned to any user'); echo ''; echo FunctionsEdit::editFieldYesNo('show_unassigned', $show_unassigned); echo ''; echo ''; echo I18N::translate('Show research tasks that have a date in the future'); echo ''; echo FunctionsEdit::editFieldYesNo('show_future', $show_future); echo ''; echo ''; echo /* I18N: label for a yes/no option */ I18N::translate('Add a scrollbar when block contents grow'); echo ''; echo FunctionsEdit::editFieldYesNo('block', $block); echo ''; } }