. */ /** * Class UserWelcomeModule */ class UserWelcomeModule extends Module implements ModuleBlockInterface { /** {@inheritdoc} */ public function getTitle() { return /* I18N: Name of a module */ I18N::translate('My page'); } /** {@inheritdoc} */ public function getDescription() { return /* I18N: Description of the “My page” module */ I18N::translate('A greeting message and useful links for a user.'); } /** {@inheritdoc} */ public function getBlock($block_id, $template = true, $cfg = null) { global $WT_TREE; $id = $this->getName() . $block_id; $class = $this->getName() . '_block'; $title = '' . /* I18N: A greeting; %s is the user’s name */ I18N::translate('Welcome %s', Auth::user()->getRealNameHtml()) . ''; $content = ''; $content .= ''; $gedcomid = $WT_TREE->getUserPreference(Auth::user(), 'gedcomid'); if ($gedcomid) { $content .= ''; $content .= ''; } $content .= '

' . I18N::translate('My account') . '

' . I18N::translate('My pedigree') . '

' . I18N::translate('My individual record') . '
'; if ($template) { 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 false; } /** {@inheritdoc} */ public function configureBlock($block_id) { } }