. */ namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Theme; /** * Class UserWelcomeModule */ class UserWelcomeModule extends AbstractModule 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.'); } /** * Generate the HTML content of this block. * * @param int $block_id * @param bool $template * @param string[] $cfg * * @return string */ public function getBlock($block_id, $template = true, $cfg = array()) { 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 = '
' . I18N::translate('My account') . ' | ';
$gedcomid = $WT_TREE->getUserPreference(Auth::user(), 'gedcomid');
if ($gedcomid && Module::isActiveChart($WT_TREE, 'pedigree_chart')) {
$content .= '' . I18N::translate('My pedigree') . ' | ';
$content .= '' . I18N::translate('My individual record') . ' | ';
}
$content .= '