2016-11-07 16:31:32 +01:00

15 lines
269 B
PHP

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