protected function SimplenewsSubscriptionBlock::blockAccess in Simplenews 8.2
Same name and namespace in other branches
- 8 src/Plugin/Block/SimplenewsSubscriptionBlock.php \Drupal\simplenews\Plugin\Block\SimplenewsSubscriptionBlock::blockAccess()
- 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
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\BlockCode
protected function blockAccess(AccountInterface $account) {
// Only allow users with the 'subscribe to newsletters' permission.
return AccessResult::allowedIfHasPermission($account, 'subscribe to newsletters');
}