You are here

public function GProfileTypeController::delete in Group 7

Delete a group member profile type.

Overrides EntityAPIControllerExportable::delete

See also

EntityAPIController::delete()

File

modules/gprofile/classes/gprofile_type.controller.inc, line 17
Defines the Entity API CRUD class for group member profile types.

Class

GProfileTypeController
Controller for group member profile type entities.

Code

public function delete($ids, DatabaseTransaction $transaction = NULL) {
  $pids = array();
  foreach (gprofile_types($ids) as $gprofile_type) {

    // If an entity is deleted while it was flagged as ENTITY_IN_CODE, it
    // means the entity was either reverted or really deleted. By checking
    // for the 'is_rebuild' property, we know it was deleted from within
    // _entity_defaults_rebuild() which only deletes the entity if the
    // default it came from is no longer available. In any other case, we
    // are dealing with a revert or a manual deletion which will only result
    // in the entity being rebuilt upon next cache clear.
    $entity_in_code = entity_has_status('gprofile_type', $gprofile_type, ENTITY_IN_CODE);
    $entity_rebuilt = !empty($gprofile_type->is_rebuild);

    // Set this on the group type so other modules can use it.
    $gprofile_type->is_revert = $entity_in_code && !$entity_rebuilt;

    // Gather the group ids of all groups of the deleted type.
    if (!$gprofile_type->is_revert) {
      $gprofiles = gprofile_load_by_type($gprofile_type->name);
      $pids = array_merge($pids, array_keys($gprofiles));
    }

    // Add Internationalization module support.
    if (module_exists('i18n_string')) {
      i18n_string_object_remove('gprofile_type', $gprofile_type);
    }
  }

  // Delete all profiles of the deleted, but not reverted types.
  if (!empty($pids)) {
    gprofile_delete_multiple($pids);
  }

  // Delete the profile types after setting our flags so those flags are still
  // being passed on to other modules implementing hook_gprofile_type_delete().
  parent::delete($ids, $transaction);
}