You are here

function civicrm_case_activity_reference_field_update_7200 in CiviCRM Entity 7.2

Ensure required entities are configured in civicrm_entity settings

File

modules/civicrm_case_activity_reference_field/civicrm_case_activity_reference_field.install, line 30

Code

function civicrm_case_activity_reference_field_update_7200() {
  $selected_entities = variable_get('civicrm_entity_admin_enabled_entities', array());
  $update = FALSE;
  $required_entities = array(
    'civicrm_case' => 'Case',
    'civicrm_activity' => 'Activity',
  );
  foreach ($required_entities as $drupal_entity_type => $entity_type_label) {
    if (empty($selected_entities[$drupal_entity_type])) {
      $update = TRUE;
      $selected_entities[$drupal_entity_type] = $drupal_entity_type;
    }
  }
  if ($update) {
    variable_set('civicrm_entity_admin_enabled_entities', $selected_entities);
    drupal_flush_all_caches();
  }
}