You are here

function show_title_block_access in Show title 8

Same name and namespace in other branches
  1. 2.0.x show_title.module \show_title_block_access()

Implements hook_block_access().

File

./show_title.module, line 124
Module Show Title.

Code

function show_title_block_access(Block $block, $operation, AccountInterface $account) {
  if ($operation == 'view' && $block
    ->getPluginId() == 'page_title_block') {
    if (!show_title_block()) {
      return AccessResult::forbidden();
    }
  }
}