You are here

function context_reaction_theme_context_plugins in Context Reaction: Theme 6.2

Same name and namespace in other branches
  1. 7 context_reaction_theme.module \context_reaction_theme_context_plugins()

CTools plugin API hook for Context

File

./context_reaction_theme.module, line 24

Code

function context_reaction_theme_context_plugins() {
  $plugins = array();
  $plugins['context_reaction_active_theme'] = array(
    'handler' => array(
      'path' => drupal_get_path('module', 'context_reaction_theme') . '/plugins',
      'file' => 'context_reaction_active_theme.inc',
      'class' => 'context_reaction_active_theme',
      'parent' => 'context_reaction',
    ),
  );
  return $plugins;
}