You are here

protected function SimplenewsSubscriptionBlock::blockAccess in Simplenews 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/Block/SimplenewsSubscriptionBlock.php \Drupal\simplenews\Plugin\Block\SimplenewsSubscriptionBlock::blockAccess()
  2. 3.x src/Plugin/Block/SimplenewsSubscriptionBlock.php \Drupal\simplenews\Plugin\Block\SimplenewsSubscriptionBlock::blockAccess()

Indicates whether the block should be shown.

Blocks with specific access checking should override this method rather than access(), in order to avoid repeating the handling of the $return_as_object argument.

Parameters

\Drupal\Core\Session\AccountInterface $account: The user session for which to check access.

Return value

\Drupal\Core\Access\AccessResult The access result.

Overrides BlockPluginTrait::blockAccess

See also

self::access()

File

src/Plugin/Block/SimplenewsSubscriptionBlock.php, line 88

Class

SimplenewsSubscriptionBlock
Provides a subscription block with all available newsletters and email field.

Namespace

Drupal\simplenews\Plugin\Block

Code

protected function blockAccess(AccountInterface $account) {

  // Only allow users with the 'subscribe to newsletters' permission.
  return AccessResult::allowedIfHasPermission($account, 'subscribe to newsletters');
}