You are here

function tokenauth_ctools_plugin_api in Token authentication 7

Same name and namespace in other branches
  1. 6 tokenauth.module \tokenauth_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./tokenauth.module, line 234

Code

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