You are here

function yamaps_example_feature_ctools_plugin_api in Yandex.Maps 7

Implements hook_ctools_plugin_api().

File

modules/yamaps_example_feature/yamaps_example_feature.features.inc, line 11
Exports generic Drupal hooks.

Code

function yamaps_example_feature_ctools_plugin_api($module = NULL, $api = NULL) {
  if ($module == "strongarm" && $api == "strongarm") {
    return [
      "version" => "1",
    ];
  }
}