You are here

function context_keywords_ctools_plugin_api in Context Keywords 7

Same name and namespace in other branches
  1. 6 context_keywords.module \context_keywords_ctools_plugin_api()

Your module should generate it's content here. This will be displayed within your module

File

./context_keywords.module, line 12
context_keywords.module Adds referral url keyword conditions to Context

Code

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