You are here

function context_reaction_theme_ctools_plugin_api in Context Reaction: Theme 7

Same name and namespace in other branches
  1. 6.2 context_reaction_theme.module \context_reaction_theme_ctools_plugin_api()

Implements hook_ctools_plugin_api().

Notify CTools that we'll be using the plugin API with Context module.

File

./context_reaction_theme.module, line 50
This module enables a context reaction to alter the active theme.

Code

function context_reaction_theme_ctools_plugin_api($module, $api) {
  if ($module == 'context' && $api == 'plugins') {
    return array(
      'version' => 3,
    );
  }
}