Same name and namespace in other branches
  1. 8.9.x core/modules/system/system.module \system_preprocess_block()
  2. 9 core/modules/system/system.module \system_preprocess_block()

Implements hook_preprocess_block().

File

modules/system/system.module, line 2130
Configuration system that lets administrators modify the workings of the site.

Code

function system_preprocess_block(&$variables) {

  // System menu blocks should get the same class as menu module blocks.
  if ($variables['block']->module == 'system' && in_array($variables['block']->delta, array_keys(menu_list_system_menus()))) {
    $variables['classes_array'][] = 'block-menu';
  }
}