You are here

function farm_api_update_7000 in farmOS 7

Enable the RESTful Web Services Field Collection module.

File

modules/farm/farm_api/farm_api.install, line 71
Farm API install file.

Code

function farm_api_update_7000(&$sandbox) {
  $module = 'restws_field_collection';
  if (!module_exists($module)) {
    module_enable(array(
      $module,
    ));
  }
}