public function RegisterFormPopup::build in Login Popup 2.x
Same name and namespace in other branches
- 8 src/Plugin/Block/RegisterFormPopup.php \Drupal\login_popup\Plugin\Block\RegisterFormPopup::build()
Builds and returns the renderable array for this block plugin.
If a block should not be rendered because it has no content, then this method must also ensure to return no content: it must then only return an empty array, or an empty array with #cache set (with cacheability metadata indicating the circumstances for it being empty).
Return value
array A renderable array representing the content of the block.
Overrides BlockPluginInterface::build
See also
\Drupal\block\BlockViewBuilder
File
- src/
Plugin/ Block/ RegisterFormPopup.php, line 126
Class
- RegisterFormPopup
- Provides a 'RegisterFormPopup' block.
Namespace
Drupal\login_popup\Plugin\BlockCode
public function build() {
$base_url = $this->requestStack
->getCurrentRequest()
->getSchemeAndHttpHost();
$url = Url::fromRoute('user.register');
$config = $this
->getConfiguration();
$link_options = [
'attributes' => [
'class' => [
'use-ajax',
'register-popup-form',
],
'data-dialog-type' => 'modal',
],
];
$url
->setOptions($link_options);
$link = Link::fromTextAndUrl($this
->t('Register'), $url)
->toString();
$build = [];
if ($this->currentUser
->isAnonymous()) {
$build['register_popup_block']['#markup'] = '<div class="Register-popup-link">' . $link . '</div>';
}
else {
if ($config['show_logout_link']) {
$build['login_register_popup_block']['#markup'] = '<div class="Login-Register-popup-link"><span><a href=" ' . $base_url . '/user/logout">Log out</a></div>';
}
}
$build['register_popup_block']['#attached']['library'][] = 'core/drupal.dialog.ajax';
return $build;
}