Answers for "drupal 8 block alter"

0

drupal 8 block alter

function hook_block_build_alter(array &$build, \Drupal\Core\Block\BlockPluginInterface $block) {

  // Add the 'user' cache context to some blocks.
  if ($some_condition) {
    $build['#cache']['contexts'][] = 'user';
  }
}
Posted by: Guest on November-24-2020

Browse Popular Code Answers by Language