You are here

public function LoginAndRegisterPopup::build in Login Popup 8

Same name and namespace in other branches
  1. 2.x src/Plugin/Block/LoginAndRegisterPopup.php \Drupal\login_popup\Plugin\Block\LoginAndRegisterPopup::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/LoginAndRegisterPopup.php, line 24

Class

LoginAndRegisterPopup
Provides a 'LoginAndRegisterPopup' block.

Namespace

Drupal\login_popup\Plugin\Block

Code

public function build() {
  $url_register = Url::fromRoute('user.register');
  $url_login = Url::fromRoute('user.login');
  $link_options = array(
    'attributes' => array(
      'class' => array(
        'use-ajax',
        'login-popup-form',
      ),
      'data-dialog-type' => 'modal',
    ),
  );
  $url_register
    ->setOptions($link_options);
  $url_login
    ->setOptions($link_options);
  $link_register = Link::fromTextAndUrl(t('Register'), $url_register)
    ->toString();
  $link_login = Link::fromTextAndUrl(t('Log in'), $url_login)
    ->toString();
  $build = [];
  if (\Drupal::currentUser()
    ->isAnonymous()) {
    $build['login_register_popup_block']['#markup'] = '<div class="Login-Register-popup-link"><span>' . $link_login . '</span> | <span>' . $link_register . '</span></div>';
  }
  $build['login_register_popup_block']['#attached']['library'][] = 'core/drupal.dialog.ajax';
  return $build;
}