function LanguageBlock::blockAccess

Same name and namespace in other branches
  1. 8.9.x core/modules/language/src/Plugin/Block/LanguageBlock.php \Drupal\language\Plugin\Block\LanguageBlock::blockAccess()
  2. 10 core/modules/language/src/Plugin/Block/LanguageBlock.php \Drupal\language\Plugin\Block\LanguageBlock::blockAccess()
  3. 11.x core/modules/language/src/Plugin/Block/LanguageBlock.php \Drupal\language\Plugin\Block\LanguageBlock::blockAccess()

Overrides BlockPluginTrait::blockAccess

File

core/modules/language/src/Plugin/Block/LanguageBlock.php, line 76

Class

LanguageBlock
Provides a 'Language switcher' block.

Namespace

Drupal\language\Plugin\Block

Code

protected function blockAccess(AccountInterface $account) {
    $access = $this->languageManager
        ->isMultilingual() ? AccessResult::allowed() : AccessResult::forbidden();
    return $access->addCacheTags([
        'config:configurable_language_list',
    ]);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.