You are here

class GProfileTypeController in Group 7

Controller for group member profile type entities.

Hierarchy

Expanded class hierarchy of GProfileTypeController

1 string reference to 'GProfileTypeController'
gprofile_entity_info in modules/gprofile/gprofile.entity.inc
Implements hook_entity_info().

File

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

View source
class GProfileTypeController extends EntityAPIControllerExportable {

  /**
   * Delete a group member profile type.
   *
   * @see EntityAPIController::delete()
   */
  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);
  }

  /**
   * Save a group member profile type.
   *
   * @see EntityAPIController::save()
   */
  public function save($gprofile_type, DatabaseTransaction $transaction = NULL) {

    // Add Internationalization module support.
    if (module_exists('i18n_string')) {
      i18n_string_object_update('gprofile_type', $gprofile_type);
    }
    return parent::save($gprofile_type, $transaction);
  }

  /**
   * Create a profile type.
   *
   * We first set up the values that are specific to the profile type schema
   * but then also run the EntityAPIControllerExportable counterpart.
   *
   * @param array $values
   *   An array of values to set, keyed by property name.
   *
   * @return GProfileType
   *   A new GProfileType instance.
   */
  public function create(array $values = array()) {

    // Provide defaults that are needed in gprofile_type_form().
    $values += array(
      'name' => '',
      'label' => '',
    );
    return parent::create($values);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DrupalDefaultEntityController::$cache protected property Whether this entity type should use the static cache.
DrupalDefaultEntityController::$entityCache protected property Static cache of entities, keyed by entity ID.
DrupalDefaultEntityController::$entityInfo protected property Array of information about the entity.
DrupalDefaultEntityController::$entityType protected property Entity type for this controller instance.
DrupalDefaultEntityController::$hookLoadArguments protected property Additional arguments to pass to hook_TYPE_load().
DrupalDefaultEntityController::$idKey protected property Name of the entity's ID field in the entity database table.
DrupalDefaultEntityController::$revisionKey protected property Name of entity's revision database table field, if it supports revisions.
DrupalDefaultEntityController::$revisionTable protected property The table that stores revisions, if the entity supports revisions.
DrupalDefaultEntityController::cleanIds protected function Ensures integer entity IDs are valid.
DrupalDefaultEntityController::filterId protected function Callback for array_filter that removes non-integer IDs.
EntityAPIController::$bundleKey protected property
EntityAPIController::$cacheComplete protected property
EntityAPIController::$defaultRevisionKey protected property
EntityAPIController::buildContent public function Implements EntityAPIControllerInterface. Overrides EntityAPIControllerInterface::buildContent
EntityAPIController::deleteRevision public function Implements EntityAPIControllerRevisionableInterface::deleteRevision(). Overrides EntityAPIControllerRevisionableInterface::deleteRevision
EntityAPIController::import public function Implements EntityAPIControllerInterface. Overrides EntityAPIControllerInterface::import
EntityAPIController::query public function Builds and executes the query for loading.
EntityAPIController::renderEntityProperty protected function Renders a single entity property.
EntityAPIController::saveRevision protected function Saves an entity revision.
EntityAPIControllerExportable::$entityCacheByName protected property
EntityAPIControllerExportable::$nameKey protected property
EntityAPIControllerExportable::applyConditions protected function
EntityAPIControllerExportable::attachLoad protected function Overridden. Overrides DrupalDefaultEntityController::attachLoad
EntityAPIControllerExportable::buildQuery protected function Support loading by name key. Overrides EntityAPIController::buildQuery
EntityAPIControllerExportable::cacheGet protected function Overridden. Overrides DrupalDefaultEntityController::cacheGet
EntityAPIControllerExportable::cacheGetByName protected function Like cacheGet() but keyed by name.
EntityAPIControllerExportable::cacheSet protected function Overridden. Overrides DrupalDefaultEntityController::cacheSet
EntityAPIControllerExportable::export public function Overridden. Overrides EntityAPIController::export
EntityAPIControllerExportable::invoke public function Overridden to care about reverted bundle entities and to skip Rules. Overrides EntityAPIController::invoke
EntityAPIControllerExportable::load public function Overridden to support passing numeric ids as well as names as $ids. Overrides EntityAPIController::load
EntityAPIControllerExportable::resetCache public function Overrides DrupalDefaultEntityController::resetCache(). Overrides EntityAPIController::resetCache
EntityAPIControllerExportable::view public function Implements EntityAPIControllerInterface. Overrides EntityAPIController::view
EntityAPIControllerExportable::__construct public function Overridden. Overrides EntityAPIController::__construct
GProfileTypeController::create public function Create a profile type. Overrides EntityAPIController::create
GProfileTypeController::delete public function Delete a group member profile type. Overrides EntityAPIControllerExportable::delete
GProfileTypeController::save public function Save a group member profile type. Overrides EntityAPIControllerExportable::save