farmOS/farm_soil.features.inc

18 lines
367 B
PHP

<?php
/**
* @file
* farm_soil.features.inc
*/
/**
* Implements hook_ctools_plugin_api().
*/
function farm_soil_ctools_plugin_api($module = NULL, $api = NULL) {
if ($module == "openlayers" && $api == "openlayers_layers") {
return array("version" => "1");
}
if ($module == "strongarm" && $api == "strongarm") {
return array("version" => "1");
}
}