You are here

protected function PostBlock::blockAccess in Open Social 8.9

Same name and namespace in other branches
  1. 8 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::blockAccess()
  2. 8.2 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::blockAccess()
  3. 8.3 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::blockAccess()
  4. 8.4 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::blockAccess()
  5. 8.5 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::blockAccess()
  6. 8.6 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::blockAccess()
  7. 8.7 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::blockAccess()
  8. 8.8 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::blockAccess()
  9. 10.3.x modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::blockAccess()
  10. 10.0.x modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::blockAccess()
  11. 10.1.x modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::blockAccess()
  12. 10.2.x modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::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()

1 method overrides PostBlock::blockAccess()
PostGroupBlock::blockAccess in modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php
Indicates whether the block should be shown.

File

modules/social_features/social_post/src/Plugin/Block/PostBlock.php, line 138

Class

PostBlock
Provides a 'PostBlock' block.

Namespace

Drupal\social_post\Plugin\Block

Code

protected function blockAccess(AccountInterface $account) {
  return $this->entityTypeManager
    ->getAccessControlHandler($this->entityType)
    ->createAccess($this->bundle, $account, [], TRUE);
}