You are here

function context_omega_context_plugins in Context omega 7

Implements hook_context_plugins().

File

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

Code

function context_omega_context_plugins() {
  $plugins['context_omega_reaction_omega_layout'] = array(
    'handler' => array(
      'path' => drupal_get_path('module', 'context_omega') . '/plugins',
      'file' => 'context_omega_reaction_omega_layout.inc',
      'class' => 'context_omega_reaction_omega_layout',
      'parent' => 'context_reaction_block',
    ),
  );
  return $plugins;
}