You are here

function values_ctools_plugin_api in Values 7

Same name and namespace in other branches
  1. 6 values.module \values_ctools_plugin_api()

Implements hook_ctools_plugin_api().

Tell CTools that we support the default_values_sets API.

File

./values.module, line 138
API for managing reusable value sets.

Code

function values_ctools_plugin_api($owner, $api) {
  if ($owner == 'values' && $api == 'default_values_sets') {
    return array(
      'version' => 1,
    );
  }
}