You are here

function context_field_ctools_plugin_api in Context Field 7

Implements hook_ctools_plugin_api().

File

./context_field.module, line 23
Context Field

Code

function context_field_ctools_plugin_api() {
  list($module, $api) = func_get_args();
  if ($module == "context" && $api == "context") {
    return array(
      "version" => 3,
    );
  }
}