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_fields/farm_fields.features.inc

22 lines
404 B
PHP

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