You are here

function commons_groups_update_3109 in Drupal Commons 7.3

Update the group_group field per http://drupal.org/node/1948224 and disable the deprecated Commons Group Privacy module per https://drupal.org/node/1961296.

File

modules/commons/commons_groups/commons_groups.install, line 114

Code

function commons_groups_update_3109() {

  // Commons Group Privacy was deprecated in https://drupal.org/node/1961296.
  module_disable('commons_group_privacy', TRUE);
  $revert = array(
    'commons_groups' => array(
      'field_base',
      'field_instance',
    ),
  );
  features_revert($revert);
  return array();
}