. */ /** * Class LoginBlockModule */ class LoginBlockModule extends AbstractModule implements ModuleBlockInterface { /** {@inheritdoc} */ public function getTitle() { return /* I18N: Name of a module */ I18N::translate('Login'); } /** {@inheritdoc} */ public function getDescription() { return /* I18N: Description of the “Login” module */ I18N::translate('An alternative way to login and logout.'); } /** {@inheritdoc} */ public function getBlock($block_id, $template = true, $cfg = null) { global $controller; $id = $this->getName() . $block_id; $class = $this->getName() . '_block'; $controller->addInlineJavascript(' jQuery("#new_passwd").hide(); jQuery("#passwd_click").click(function() { jQuery("#new_passwd").slideToggle(100, function() { jQuery("#new_passwd_username").focus(); }); return false; }); '); if (Auth::check()) { $title = I18N::translate('Logout'); $content = '
'; } else { $title = I18N::translate('Login'); $content = '