You are here

protected function ForumBlockBase::blockAccess in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/forum/src/Plugin/Block/ForumBlockBase.php \Drupal\forum\Plugin\Block\ForumBlockBase::blockAccess()
  2. 9 core/modules/forum/src/Plugin/Block/ForumBlockBase.php \Drupal\forum\Plugin\Block\ForumBlockBase::blockAccess()

File

core/modules/forum/src/Plugin/Block/ForumBlockBase.php, line 57

Class

ForumBlockBase
Provides a base class for Forum blocks.

Namespace

Drupal\forum\Plugin\Block

Code

protected function blockAccess(AccountInterface $account) {
  return AccessResult::allowedIfHasPermission($account, 'access content');
}