farmOS/modules/farm/farm_map/farm_map.features.inc

33 lines
961 B
PHP

<?php
/**
* @file
* farm_map.features.inc
*/
/**
* Implements hook_ctools_plugin_api().
*/
function farm_map_ctools_plugin_api($module = NULL, $api = NULL) {
if ($module == "openlayers" && $api == "default_openlayers_components") {
return array("version" => "1");
}
if ($module == "openlayers" && $api == "default_openlayers_controls") {
return array("version" => "1");
}
if ($module == "openlayers" && $api == "default_openlayers_interactions") {
return array("version" => "1");
}
if ($module == "openlayers" && $api == "default_openlayers_layers") {
return array("version" => "1");
}
if ($module == "openlayers" && $api == "default_openlayers_maps") {
return array("version" => "1");
}
if ($module == "openlayers" && $api == "default_openlayers_sources") {
return array("version" => "1");
}
if ($module == "openlayers" && $api == "default_openlayers_styles") {
return array("version" => "1");
}
}