You are here

function context_layouts_context_registry_alter in Context 6.3

Same name and namespace in other branches
  1. 6 context_layouts/context_layouts.module \context_layouts_context_registry_alter()
  2. 7.3 context_layouts/context_layouts.module \context_layouts_context_registry_alter()

Implementation of hook_context_registry_alter().

File

context_layouts/context_layouts.module, line 34

Code

function context_layouts_context_registry_alter(&$registry) {
  if (isset($registry['reactions']['block'])) {
    $registry['reactions']['block']['plugin'] = 'context_layouts_reaction_block';
  }
}