You are here

function values_ctools_plugin_api in Values 6

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

Implementation of hook_ctools_plugin_api().

Tell CTools that we support the default_values_list API.

File

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

Code

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