You are here

function sharerich_ctools_plugin_api in Sharerich 7.3

Same name and namespace in other branches
  1. 7.2 sharerich.module \sharerich_ctools_plugin_api()

Implementation of hook_ctools_plugin_api().

Tell CTools that we support the default_mymodule_presets API.

File

./sharerich.module, line 14

Code

function sharerich_ctools_plugin_api($owner, $api) {
  if ($owner == 'sharerich' && $api == 'default_sharerich_sets') {
    return array(
      'version' => 1,
    );
  }
}