You are here

function tokenauth_context_ctools_plugin_api in Token authentication 6.2

Implementation of hook_ctools_plugin_api().

File

modules/tokenauth_context/tokenauth_context.module, line 20
Code for the Token Authentication Context Integration module.

Code

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