. */ namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Site; use Fisharebest\Webtrees\View; /** * Class LoginBlockModule */ class LoginBlockModule extends AbstractModule implements ModuleBlockInterface { /** {@inheritdoc} */ public function getTitle() { return /* I18N: Name of a module */ I18N::translate('Sign in'); } /** {@inheritdoc} */ public function getDescription() { return /* I18N: Description of the “Sign in” module */ I18N::translate('An alternative way to sign in and sign out.'); } /** * 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 = []): string { if (Auth::check()) { $title = I18N::translate('Sign out'); $content = View::make('blocks/sign-out', [ 'user' => Auth::user(), ]); } else { $title = I18N::translate('Sign in'); $content = View::make('blocks/sign-in', [ 'allow_register' => (bool) Site::getPreference('USE_REGISTRATION_MODULE') ]); } if ($template) { return View::make('blocks/template', [ 'block' => str_replace('_', '-', $this->getName()), 'id' => $block_id, 'config_url' => '', 'title' => $title, 'content' => $content, ]); } else { return $content; } } /** {@inheritdoc} */ public function loadAjax(): bool { return false; } /** {@inheritdoc} */ public function isUserBlock(): bool { return true; } /** {@inheritdoc} */ public function isGedcomBlock(): bool { return true; } /** * An HTML form to edit block settings * * @param int $block_id * * @return void */ public function configureBlock($block_id) { } }