You are here

openlayers_test_features.features.inc in Openlayers 6.2

File

tests/openlayers_test_features/openlayers_test_features.features.inc
View source
<?php

/**
 * Implementation of hook_ctools_plugin_api().
 */
function openlayers_test_features_ctools_plugin_api() {
  list($module, $api) = func_get_args();
  if ($module == "openlayers" && $api == "openlayers_layers") {
    return array(
      "version" => 1,
    );
  }
  elseif ($module == "openlayers" && $api == "openlayers_presets") {
    return array(
      "version" => 1,
    );
  }
  elseif ($module == "openlayers" && $api == "openlayers_styles") {
    return array(
      "version" => 1,
    );
  }
}

Functions