You are here

function context_omega_context_registry_alter in Context omega 7

Implements hook_context_registry_alter().

File

./context_omega.module, line 27
Main module file for the Omega context integration module.

Code

function context_omega_context_registry_alter(&$registry) {
  if (isset($registry['reactions']['block'])) {
    $registry['reactions']['block']['title'] = t('Blocks and Omega');
    $registry['reactions']['block']['plugin'] = 'context_omega_reaction_omega_layout';
  }
}