3
0
Fork 0
mirror of https://github.com/farmOS/farmOS.git synced 2024-02-23 11:37:38 +01:00
farmOS/modules/farm/farm_map/farm_map.features.inc

33 lines
961 B
PHP
Raw Normal View History

<?php
/**
* @file
* farm_map.features.inc
*/
/**
* Implements hook_ctools_plugin_api().
*/
2015-07-23 04:21:37 +02:00
function farm_map_ctools_plugin_api($module = NULL, $api = NULL) {
if ($module == "openlayers" && $api == "default_openlayers_components") {
return array("version" => "1");
}
2015-07-28 17:48:35 +02:00
if ($module == "openlayers" && $api == "default_openlayers_controls") {
return array("version" => "1");
}
if ($module == "openlayers" && $api == "default_openlayers_interactions") {
return array("version" => "1");
}
2015-07-23 07:18:00 +02:00
if ($module == "openlayers" && $api == "default_openlayers_layers") {
return array("version" => "1");
}
if ($module == "openlayers" && $api == "default_openlayers_maps") {
return array("version" => "1");
}
2015-07-23 04:21:37 +02:00
if ($module == "openlayers" && $api == "default_openlayers_sources") {
return array("version" => "1");
}
2015-07-23 07:49:42 +02:00
if ($module == "openlayers" && $api == "default_openlayers_styles") {
return array("version" => "1");
}
}