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_api/farm_api.install

17 lines
275 B
Plaintext

<?php
/**
* @file
* Farm API install file.
*/
/**
* Enable the RESTful Web Services Field Collection module.
*/
function farm_api_update_7000(&$sandbox) {
$module = 'restws_field_collection';
if (!module_exists($module)) {
module_enable(array($module));
}
}