| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981 | <?php/** * @file * Provides a controller building upon the core controller but providing more * features like full CRUD functionality. *//** * Interface for EntityControllers compatible with the entity API. */interface EntityAPIControllerInterface extends DrupalEntityControllerInterface {  /**   * Delete permanently saved entities.   *   * In case of failures, an exception is thrown.   *   * @param $ids   *   An array of entity IDs.   */  public function delete($ids);  /**   * Invokes a hook on behalf of the entity. For hooks that have a respective   * field API attacher like insert/update/.. the attacher is called too.   */  public function invoke($hook, $entity);  /**   * Permanently saves the given entity.   *   * In case of failures, an exception is thrown.   *   * @param $entity   *   The entity to save.   *   * @return   *   SAVED_NEW or SAVED_UPDATED is returned depending on the operation   *   performed.   */  public function save($entity);  /**   * Create a new entity.   *   * @param array $values   *   An array of values to set, keyed by property name.   * @return   *   A new instance of the entity type.   */  public function create(array $values = array());  /**   * Exports an entity as serialized string.   *   * @param $entity   *   The entity to export.   * @param $prefix   *   An optional prefix for each line.   *   * @return   *   The exported entity as serialized string. The format is determined by   *   the controller and has to be compatible with the format that is accepted   *   by the import() method.   */  public function export($entity, $prefix = '');  /**   * Imports an entity from a string.   *   * @param string $export   *   An exported entity as serialized string.   *   * @return   *   An entity object not yet saved.   */  public function import($export);  /**   * Builds a structured array representing the entity's content.   *   * The content built for the entity will vary depending on the $view_mode   * parameter.   *   * @param $entity   *   An entity object.   * @param $view_mode   *   View mode, e.g. 'full', 'teaser'...   * @param $langcode   *   (optional) A language code to use for rendering. Defaults to the global   *   content language of the current request.   * @return   *   The renderable array.   */  public function buildContent($entity, $view_mode = 'full', $langcode = NULL);  /**   * Generate an array for rendering the given entities.   *   * @param $entities   *   An array of entities to render.   * @param $view_mode   *   View mode, e.g. 'full', 'teaser'...   * @param $langcode   *   (optional) A language code to use for rendering. Defaults to the global   *   content language of the current request.   * @param $page   *   (optional) If set will control if the entity is rendered: if TRUE   *   the entity will be rendered without its title, so that it can be embeded   *   in another context. If FALSE the entity will be displayed with its title   *   in a mode suitable for lists.   *   If unset, the page mode will be enabled if the current path is the URI   *   of the entity, as returned by entity_uri().   *   This parameter is only supported for entities which controller is a   *   EntityAPIControllerInterface.   * @return   *   The renderable array, keyed by entity name or numeric id.   */  public function view($entities, $view_mode = 'full', $langcode = NULL, $page = NULL);}/** * Interface for EntityControllers of entities that support revisions. */interface EntityAPIControllerRevisionableInterface extends EntityAPIControllerInterface {  /**   * Delete an entity revision.   *   * Note that the default revision of an entity cannot be deleted.   *   * @param $revision_id   *   The ID of the revision to delete.   *   * @return boolean   *   TRUE if the entity revision could be deleted, FALSE otherwise.   */  public function deleteRevision($revision_id);}/** * A controller implementing EntityAPIControllerInterface for the database. */class EntityAPIController extends DrupalDefaultEntityController implements EntityAPIControllerRevisionableInterface {  protected $cacheComplete = FALSE;  protected $bundleKey;  protected $defaultRevisionKey;  /**   * Overridden.   * @see DrupalDefaultEntityController#__construct()   */  public function __construct($entityType) {    parent::__construct($entityType);    // If this is the bundle of another entity, set the bundle key.    if (isset($this->entityInfo['bundle of'])) {      $info = entity_get_info($this->entityInfo['bundle of']);      $this->bundleKey = $info['bundle keys']['bundle'];    }    $this->defaultRevisionKey = !empty($this->entityInfo['entity keys']['default revision']) ? $this->entityInfo['entity keys']['default revision'] : 'default_revision';  }  /**   * Overrides DrupalDefaultEntityController::buildQuery().   */  protected function buildQuery($ids, $conditions = array(), $revision_id = FALSE) {    $query = parent::buildQuery($ids, $conditions, $revision_id);    if ($this->revisionKey) {      // Compare revision id of the base and revision table, if equal then this      // is the default revision.      $query->addExpression('CASE WHEN base.' . $this->revisionKey . ' = revision.' . $this->revisionKey . ' THEN 1 ELSE 0 END', $this->defaultRevisionKey);    }    return $query;  }  /**   * Builds and executes the query for loading.   *   * @return The results in a Traversable object.   */  public function query($ids, $conditions, $revision_id = FALSE) {    // Build the query.    $query = $this->buildQuery($ids, $conditions, $revision_id);    $result = $query->execute();    if (!empty($this->entityInfo['entity class'])) {      $result->setFetchMode(PDO::FETCH_CLASS, $this->entityInfo['entity class'], array(array(), $this->entityType));    }    return $result;  }  /**   * Overridden.   * @see DrupalDefaultEntityController#load($ids, $conditions)   *   * In contrast to the parent implementation we factor out query execution, so   * fetching can be further customized easily.   */  public function load($ids = array(), $conditions = array()) {    $entities = array();    // Revisions are not statically cached, and require a different query to    // other conditions, so separate the revision id into its own variable.    if ($this->revisionKey && isset($conditions[$this->revisionKey])) {      $revision_id = $conditions[$this->revisionKey];      unset($conditions[$this->revisionKey]);    }    else {      $revision_id = FALSE;    }    // Create a new variable which is either a prepared version of the $ids    // array for later comparison with the entity cache, or FALSE if no $ids    // were passed. The $ids array is reduced as items are loaded from cache,    // and we need to know if it's empty for this reason to avoid querying the    // database when all requested entities are loaded from cache.    $passed_ids = !empty($ids) ? array_flip($ids) : FALSE;    // Try to load entities from the static cache.    if ($this->cache && !$revision_id) {      $entities = $this->cacheGet($ids, $conditions);      // If any entities were loaded, remove them from the ids still to load.      if ($passed_ids) {        $ids = array_keys(array_diff_key($passed_ids, $entities));      }    }    // Support the entitycache module if activated.    if (!empty($this->entityInfo['entity cache']) && !$revision_id && $ids && !$conditions) {      $cached_entities = EntityCacheControllerHelper::entityCacheGet($this, $ids, $conditions);      // If any entities were loaded, remove them from the ids still to load.      $ids = array_diff($ids, array_keys($cached_entities));      $entities += $cached_entities;      // Add loaded entities to the static cache if we are not loading a      // revision.      if ($this->cache && !empty($cached_entities) && !$revision_id) {        $this->cacheSet($cached_entities);      }    }    // Load any remaining entities from the database. This is the case if $ids    // is set to FALSE (so we load all entities), if there are any ids left to    // load or if loading a revision.    if (!($this->cacheComplete && $ids === FALSE && !$conditions) && ($ids === FALSE || $ids || $revision_id)) {      $queried_entities = array();      foreach ($this->query($ids, $conditions, $revision_id) as $record) {        // Skip entities already retrieved from cache.        if (isset($entities[$record->{$this->idKey}])) {          continue;        }        // For DB-based entities take care of serialized columns.        if (!empty($this->entityInfo['base table'])) {          $schema = drupal_get_schema($this->entityInfo['base table']);          foreach ($schema['fields'] as $field => $info) {            if (!empty($info['serialize']) && isset($record->$field)) {              $record->$field = unserialize($record->$field);              // Support automatic merging of 'data' fields into the entity.              if (!empty($info['merge']) && is_array($record->$field)) {                foreach ($record->$field as $key => $value) {                  $record->$key = $value;                }                unset($record->$field);              }            }          }        }        $queried_entities[$record->{$this->idKey}] = $record;      }    }    // Pass all entities loaded from the database through $this->attachLoad(),    // which attaches fields (if supported by the entity type) and calls the    // entity type specific load callback, for example hook_node_load().    if (!empty($queried_entities)) {      $this->attachLoad($queried_entities, $revision_id);      $entities += $queried_entities;    }    // Entitycache module support: Add entities to the entity cache if we are    // not loading a revision.    if (!empty($this->entityInfo['entity cache']) && !empty($queried_entities) && !$revision_id) {      EntityCacheControllerHelper::entityCacheSet($this, $queried_entities);    }    if ($this->cache) {      // Add entities to the cache if we are not loading a revision.      if (!empty($queried_entities) && !$revision_id) {        $this->cacheSet($queried_entities);        // Remember if we have cached all entities now.        if (!$conditions && $ids === FALSE) {          $this->cacheComplete = TRUE;        }      }    }    // Ensure that the returned array is ordered the same as the original    // $ids array if this was passed in and remove any invalid ids.    if ($passed_ids && $passed_ids = array_intersect_key($passed_ids, $entities)) {      foreach ($passed_ids as $id => $value) {        $passed_ids[$id] = $entities[$id];      }      $entities = $passed_ids;    }    return $entities;  }  /**   * Overrides DrupalDefaultEntityController::resetCache().   */  public function resetCache(array $ids = NULL) {    $this->cacheComplete = FALSE;    parent::resetCache($ids);    // Support the entitycache module.    if (!empty($this->entityInfo['entity cache'])) {      EntityCacheControllerHelper::resetEntityCache($this, $ids);    }  }  /**   * Implements EntityAPIControllerInterface.   */  public function invoke($hook, $entity) {    // entity_revision_delete() invokes hook_entity_revision_delete() and    // hook_field_attach_delete_revision() just as node module does. So we need    // to adjust the name of our revision deletion field attach hook in order to    // stick to this pattern.    $field_attach_hook = ($hook == 'revision_delete' ? 'delete_revision' : $hook);    if (!empty($this->entityInfo['fieldable']) && function_exists($function = 'field_attach_' . $field_attach_hook)) {      $function($this->entityType, $entity);    }    if (!empty($this->entityInfo['bundle of']) && entity_type_is_fieldable($this->entityInfo['bundle of'])) {      $type = $this->entityInfo['bundle of'];      // Call field API bundle attachers for the entity we are a bundle of.      if ($hook == 'insert') {        field_attach_create_bundle($type, $entity->{$this->bundleKey});      }      elseif ($hook == 'delete') {        field_attach_delete_bundle($type, $entity->{$this->bundleKey});      }      elseif ($hook == 'update' && $entity->original->{$this->bundleKey} != $entity->{$this->bundleKey}) {        field_attach_rename_bundle($type, $entity->original->{$this->bundleKey}, $entity->{$this->bundleKey});      }    }    // Invoke the hook.    module_invoke_all($this->entityType . '_' . $hook, $entity);    // Invoke the respective entity level hook.    if ($hook == 'presave' || $hook == 'insert' || $hook == 'update' || $hook == 'delete') {      module_invoke_all('entity_' . $hook, $entity, $this->entityType);    }    // Invoke rules.    if (module_exists('rules')) {      rules_invoke_event($this->entityType . '_' . $hook, $entity);    }  }  /**   * Implements EntityAPIControllerInterface.   *   * @param $transaction   *   Optionally a DatabaseTransaction object to use. Allows overrides to pass   *   in their transaction object.   */  public function delete($ids, DatabaseTransaction $transaction = NULL) {    $entities = $ids ? $this->load($ids) : FALSE;    if (!$entities) {      // Do nothing, in case invalid or no ids have been passed.      return;    }    $transaction = isset($transaction) ? $transaction : db_transaction();    try {      $ids = array_keys($entities);      db_delete($this->entityInfo['base table'])        ->condition($this->idKey, $ids, 'IN')        ->execute();      if (isset($this->revisionTable)) {        db_delete($this->revisionTable)          ->condition($this->idKey, $ids, 'IN')          ->execute();      }      // Reset the cache as soon as the changes have been applied.      $this->resetCache($ids);      foreach ($entities as $id => $entity) {        $this->invoke('delete', $entity);      }      // Ignore slave server temporarily.      db_ignore_slave();    }    catch (Exception $e) {      $transaction->rollback();      watchdog_exception($this->entityType, $e);      throw $e;    }  }  /**   * Implements EntityAPIControllerRevisionableInterface::deleteRevision().   */  public function deleteRevision($revision_id) {    if ($entity_revision = entity_revision_load($this->entityType, $revision_id)) {      // Prevent deleting the default revision.      if (entity_revision_is_default($this->entityType, $entity_revision)) {        return FALSE;      }      db_delete($this->revisionTable)        ->condition($this->revisionKey, $revision_id)        ->execute();      $this->invoke('revision_delete', $entity_revision);      return TRUE;    }    return FALSE;  }  /**   * Implements EntityAPIControllerInterface.   *   * @param $transaction   *   Optionally a DatabaseTransaction object to use. Allows overrides to pass   *   in their transaction object.   */  public function save($entity, DatabaseTransaction $transaction = NULL) {    $transaction = isset($transaction) ? $transaction : db_transaction();    try {      // Load the stored entity, if any.      if (!empty($entity->{$this->idKey}) && !isset($entity->original)) {        // In order to properly work in case of name changes, load the original        // entity using the id key if it is available.        $entity->original = entity_load_unchanged($this->entityType, $entity->{$this->idKey});      }      $entity->is_new = !empty($entity->is_new) || empty($entity->{$this->idKey});      $this->invoke('presave', $entity);      if ($entity->is_new) {        $return = drupal_write_record($this->entityInfo['base table'], $entity);        if ($this->revisionKey) {          $this->saveRevision($entity);        }        $this->invoke('insert', $entity);      }      else {        // Update the base table if the entity doesn't have revisions or        // we are updating the default revision.        if (!$this->revisionKey || !empty($entity->{$this->defaultRevisionKey})) {          $return = drupal_write_record($this->entityInfo['base table'], $entity, $this->idKey);        }        if ($this->revisionKey) {          $return = $this->saveRevision($entity);        }        $this->resetCache(array($entity->{$this->idKey}));        $this->invoke('update', $entity);        // Field API always saves as default revision, so if the revision saved        // is not default we have to restore the field values of the default        // revision now by invoking field_attach_update() once again.        if ($this->revisionKey && !$entity->{$this->defaultRevisionKey} && !empty($this->entityInfo['fieldable'])) {          field_attach_update($this->entityType, $entity->original);        }      }      // Ignore slave server temporarily.      db_ignore_slave();      unset($entity->is_new);      unset($entity->is_new_revision);      unset($entity->original);      return $return;    }    catch (Exception $e) {      $transaction->rollback();      watchdog_exception($this->entityType, $e);      throw $e;    }  }  /**   * Saves an entity revision.   *   * @param Entity $entity   *   Entity revision to save.   */  protected function saveRevision($entity) {    // Convert the entity into an array as it might not have the same properties    // as the entity, it is just a raw structure.    $record = (array) $entity;    // File fields assumes we are using $entity->revision instead of    // $entity->is_new_revision, so we also support it and make sure it's set to    // the same value.    $entity->is_new_revision = !empty($entity->is_new_revision) || !empty($entity->revision) || $entity->is_new;    $entity->revision = &$entity->is_new_revision;    $entity->{$this->defaultRevisionKey} = !empty($entity->{$this->defaultRevisionKey}) || $entity->is_new;    // When saving a new revision, set any existing revision ID to NULL so as to    // ensure that a new revision will actually be created.    if ($entity->is_new_revision && isset($record[$this->revisionKey])) {      $record[$this->revisionKey] = NULL;    }    if ($entity->is_new_revision) {      drupal_write_record($this->revisionTable, $record);      $update_default_revision = $entity->{$this->defaultRevisionKey};    }    else {      drupal_write_record($this->revisionTable, $record, $this->revisionKey);      // @todo: Fix original entity to be of the same revision and check whether      // the default revision key has been set.      $update_default_revision = $entity->{$this->defaultRevisionKey} && $entity->{$this->revisionKey} != $entity->original->{$this->revisionKey};    }    // Make sure to update the new revision key for the entity.    $entity->{$this->revisionKey} = $record[$this->revisionKey];    // Mark this revision as the default one.    if ($update_default_revision) {      db_update($this->entityInfo['base table'])        ->fields(array($this->revisionKey => $record[$this->revisionKey]))        ->condition($this->idKey, $entity->{$this->idKey})        ->execute();    }    return $entity->is_new_revision ? SAVED_NEW : SAVED_UPDATED;  }  /**   * Implements EntityAPIControllerInterface.   */  public function create(array $values = array()) {    // Add is_new property if it is not set.    $values += array('is_new' => TRUE);    if (isset($this->entityInfo['entity class']) && $class = $this->entityInfo['entity class']) {      return new $class($values, $this->entityType);    }    return (object) $values;  }  /**   * Implements EntityAPIControllerInterface.   *   * @return   *   A serialized string in JSON format suitable for the import() method.   */  public function export($entity, $prefix = '') {    $vars = get_object_vars($entity);    unset($vars['is_new']);    return entity_var_json_export($vars, $prefix);  }  /**   * Implements EntityAPIControllerInterface.   *   * @param $export   *   A serialized string in JSON format as produced by the export() method.   */  public function import($export) {    $vars = drupal_json_decode($export);    if (is_array($vars)) {      return $this->create($vars);    }    return FALSE;  }  /**   * Implements EntityAPIControllerInterface.   *   * @param $content   *   Optionally. Allows pre-populating the built content to ease overridding   *   this method.   */  public function buildContent($entity, $view_mode = 'full', $langcode = NULL, $content = array()) {    // Remove previously built content, if exists.    $entity->content = $content;    $langcode = isset($langcode) ? $langcode : $GLOBALS['language_content']->language;    // Allow modules to change the view mode.    $context = array(      'entity_type' => $this->entityType,      'entity' => $entity,      'langcode' => $langcode,    );    drupal_alter('entity_view_mode', $view_mode, $context);    // Make sure the used view-mode gets stored.    $entity->content += array('#view_mode' => $view_mode);    // By default add in properties for all defined extra fields.    if ($extra_field_controller = entity_get_extra_fields_controller($this->entityType)) {      $wrapper = entity_metadata_wrapper($this->entityType, $entity);      $extra = $extra_field_controller->fieldExtraFields();      $type_extra = &$extra[$this->entityType][$this->entityType]['display'];      $bundle_extra = &$extra[$this->entityType][$wrapper->getBundle()]['display'];      foreach ($wrapper as $name => $property) {        if (isset($type_extra[$name]) || isset($bundle_extra[$name])) {          $this->renderEntityProperty($wrapper, $name, $property, $view_mode, $langcode, $entity->content);        }      }    }    // Add in fields.    if (!empty($this->entityInfo['fieldable'])) {      // Perform the preparation tasks if they have not been performed yet.      // An internal flag prevents the operation from running twice.      $key = isset($entity->{$this->idKey}) ? $entity->{$this->idKey} : NULL;      field_attach_prepare_view($this->entityType, array($key => $entity), $view_mode);      $entity->content += field_attach_view($this->entityType, $entity, $view_mode, $langcode);    }    // Invoke hook_ENTITY_view() to allow modules to add their additions.    if (module_exists('rules')) {      rules_invoke_all($this->entityType . '_view', $entity, $view_mode, $langcode);    }    else {      module_invoke_all($this->entityType . '_view', $entity, $view_mode, $langcode);    }    module_invoke_all('entity_view', $entity, $this->entityType, $view_mode, $langcode);    $build = $entity->content;    unset($entity->content);    return $build;  }  /**   * Renders a single entity property.   */  protected function renderEntityProperty($wrapper, $name, $property, $view_mode, $langcode, &$content) {    $info = $property->info();    $content[$name] = array(      '#label_hidden' => FALSE,      '#label' => $info['label'],      '#entity_wrapped' => $wrapper,      '#theme' => 'entity_property',      '#property_name' => $name,      '#access' => $property->access('view'),      '#entity_type' => $this->entityType,    );    $content['#attached']['css']['entity.theme'] = drupal_get_path('module', 'entity') . '/theme/entity.theme.css';  }  /**   * Implements EntityAPIControllerInterface.   */  public function view($entities, $view_mode = 'full', $langcode = NULL, $page = NULL) {    // For Field API and entity_prepare_view, the entities have to be keyed by    // (numeric) id.    $entities = entity_key_array_by_property($entities, $this->idKey);    if (!empty($this->entityInfo['fieldable'])) {      field_attach_prepare_view($this->entityType, $entities, $view_mode);    }    entity_prepare_view($this->entityType, $entities);    $langcode = isset($langcode) ? $langcode : $GLOBALS['language_content']->language;    $view = array();    foreach ($entities as $entity) {      $build = entity_build_content($this->entityType, $entity, $view_mode, $langcode);      $build += array(        // If the entity type provides an implementation, use this instead the        // generic one.        // @see template_preprocess_entity()        '#theme' => 'entity',        '#entity_type' => $this->entityType,        '#entity' => $entity,        '#view_mode' => $view_mode,        '#language' => $langcode,        '#page' => $page,      );      // Allow modules to modify the structured entity.      drupal_alter(array($this->entityType . '_view', 'entity_view'), $build, $this->entityType);      $key = isset($entity->{$this->idKey}) ? $entity->{$this->idKey} : NULL;      $view[$this->entityType][$key] = $build;    }    return $view;  }}/** * A controller implementing exportables stored in the database. */class EntityAPIControllerExportable extends EntityAPIController {  protected $entityCacheByName = array();  protected $nameKey, $statusKey, $moduleKey;  /**   * Overridden.   *   * Allows specifying a name key serving as uniform identifier for this entity   * type while still internally we are using numeric identifieres.   */  public function __construct($entityType) {    parent::__construct($entityType);    // Use the name key as primary identifier.    $this->nameKey = isset($this->entityInfo['entity keys']['name']) ? $this->entityInfo['entity keys']['name'] : $this->idKey;    if (!empty($this->entityInfo['exportable'])) {      $this->statusKey = isset($this->entityInfo['entity keys']['status']) ? $this->entityInfo['entity keys']['status'] : 'status';      $this->moduleKey = isset($this->entityInfo['entity keys']['module']) ? $this->entityInfo['entity keys']['module'] : 'module';    }  }  /**   * Support loading by name key.   */  protected function buildQuery($ids, $conditions = array(), $revision_id = FALSE) {    // Add the id condition ourself, as we might have a separate name key.    $query = parent::buildQuery(array(), $conditions, $revision_id);    if ($ids) {      // Support loading by numeric ids as well as by machine names.      $key = is_numeric(reset($ids)) ? $this->idKey : $this->nameKey;      $query->condition("base.$key", $ids, 'IN');    }    return $query;  }  /**   * Overridden to support passing numeric ids as well as names as $ids.   */  public function load($ids = array(), $conditions = array()) {    $entities = array();    // Only do something if loaded by names.    if (!$ids || $this->nameKey == $this->idKey || is_numeric(reset($ids))) {      return parent::load($ids, $conditions);    }    // Revisions are not statically cached, and require a different query to    // other conditions, so separate the revision id into its own variable.    if ($this->revisionKey && isset($conditions[$this->revisionKey])) {      $revision_id = $conditions[$this->revisionKey];      unset($conditions[$this->revisionKey]);    }    else {      $revision_id = FALSE;    }    $passed_ids = !empty($ids) ? array_flip($ids) : FALSE;    // Care about the static cache.    if ($this->cache && !$revision_id) {      $entities = $this->cacheGetByName($ids, $conditions);    }    // If any entities were loaded, remove them from the ids still to load.    if ($entities) {      $ids = array_keys(array_diff_key($passed_ids, $entities));    }    $entities_by_id = parent::load($ids, $conditions);    $entities += entity_key_array_by_property($entities_by_id, $this->nameKey);    // Ensure that the returned array is keyed by numeric id and ordered the    // same as the original $ids array and remove any invalid ids.    $return = array();    foreach ($passed_ids as $name => $value) {      if (isset($entities[$name])) {        $return[$entities[$name]->{$this->idKey}] = $entities[$name];      }    }    return $return;  }  /**   * Overridden.   * @see DrupalDefaultEntityController::cacheGet()   */  protected function cacheGet($ids, $conditions = array()) {    if (!empty($this->entityCache) && $ids !== array()) {      $entities = $ids ? array_intersect_key($this->entityCache, array_flip($ids)) : $this->entityCache;      return $this->applyConditions($entities, $conditions);    }    return array();  }  /**   * Like cacheGet() but keyed by name.   */  protected function cacheGetByName($names, $conditions = array()) {    if (!empty($this->entityCacheByName) && $names !== array() && $names) {      // First get the entities by ids, then apply the conditions.      // Generally, we make use of $this->entityCache, but if we are loading by      // name, we have to use $this->entityCacheByName.      $entities = array_intersect_key($this->entityCacheByName, array_flip($names));      return $this->applyConditions($entities, $conditions);    }    return array();  }  protected function applyConditions($entities, $conditions = array()) {    if ($conditions) {      foreach ($entities as $key => $entity) {        $entity_values = (array) $entity;        // We cannot use array_diff_assoc() here because condition values can        // also be arrays, e.g. '$conditions = array('status' => array(1, 2))'        foreach ($conditions as $condition_key => $condition_value) {          if (is_array($condition_value)) {            if (!isset($entity_values[$condition_key]) || !in_array($entity_values[$condition_key], $condition_value)) {              unset($entities[$key]);            }          }          elseif (!isset($entity_values[$condition_key]) || $entity_values[$condition_key] != $condition_value) {            unset($entities[$key]);          }        }      }    }    return $entities;  }  /**   * Overridden.   * @see DrupalDefaultEntityController::cacheSet()   */  protected function cacheSet($entities) {    $this->entityCache += $entities;    // If we have a name key, also support static caching when loading by name.    if ($this->nameKey != $this->idKey) {      $this->entityCacheByName += entity_key_array_by_property($entities, $this->nameKey);    }  }  /**   * Overridden.   * @see DrupalDefaultEntityController::attachLoad()   *   * Changed to call type-specific hook with the entities keyed by name if they   * have one.   */  protected function attachLoad(&$queried_entities, $revision_id = FALSE) {    // Attach fields.    if ($this->entityInfo['fieldable']) {      if ($revision_id) {        field_attach_load_revision($this->entityType, $queried_entities);      }      else {        field_attach_load($this->entityType, $queried_entities);      }    }    // Call hook_entity_load().    foreach (module_implements('entity_load') as $module) {      $function = $module . '_entity_load';      $function($queried_entities, $this->entityType);    }    // Call hook_TYPE_load(). The first argument for hook_TYPE_load() are    // always the queried entities, followed by additional arguments set in    // $this->hookLoadArguments.    // For entities with a name key, pass the entities keyed by name to the    // specific load hook.    if ($this->nameKey != $this->idKey) {      $entities_by_name = entity_key_array_by_property($queried_entities, $this->nameKey);    }    else {      $entities_by_name = $queried_entities;    }    $args = array_merge(array($entities_by_name), $this->hookLoadArguments);    foreach (module_implements($this->entityInfo['load hook']) as $module) {      call_user_func_array($module . '_' . $this->entityInfo['load hook'], $args);    }  }  public function resetCache(array $ids = NULL) {    $this->cacheComplete = FALSE;    if (isset($ids)) {      foreach (array_intersect_key($this->entityCache, array_flip($ids)) as $id => $entity) {        unset($this->entityCacheByName[$this->entityCache[$id]->{$this->nameKey}]);        unset($this->entityCache[$id]);      }    }    else {      $this->entityCache = array();      $this->entityCacheByName = array();    }  }  /**   * Overridden to care about reverted entities.   */  public function delete($ids, DatabaseTransaction $transaction = NULL) {    $entities = $ids ? $this->load($ids) : FALSE;    if ($entities) {      parent::delete($ids, $transaction);      foreach ($entities as $id => $entity) {        if (entity_has_status($this->entityType, $entity, ENTITY_IN_CODE)) {          entity_defaults_rebuild(array($this->entityType));          break;        }      }    }  }  /**   * Overridden to care about reverted bundle entities and to skip Rules.   */  public function invoke($hook, $entity) {    if ($hook == 'delete') {      // To ease figuring out whether this is a revert, make sure that the      // entity status is updated in case the providing module has been      // disabled.      if (entity_has_status($this->entityType, $entity, ENTITY_IN_CODE) && !module_exists($entity->{$this->moduleKey})) {        $entity->{$this->statusKey} = ENTITY_CUSTOM;      }      $is_revert = entity_has_status($this->entityType, $entity, ENTITY_IN_CODE);    }    if (!empty($this->entityInfo['fieldable']) && function_exists($function = 'field_attach_' . $hook)) {      $function($this->entityType, $entity);    }    if (isset($this->entityInfo['bundle of']) && $type = $this->entityInfo['bundle of']) {      // Call field API bundle attachers for the entity we are a bundle of.      if ($hook == 'insert') {        field_attach_create_bundle($type, $entity->{$this->bundleKey});      }      elseif ($hook == 'delete' && !$is_revert) {        field_attach_delete_bundle($type, $entity->{$this->bundleKey});      }      elseif ($hook == 'update' && $id = $entity->{$this->nameKey}) {        if ($entity->original->{$this->bundleKey} != $entity->{$this->bundleKey}) {          field_attach_rename_bundle($type, $entity->original->{$this->bundleKey}, $entity->{$this->bundleKey});        }      }    }    // Invoke the hook.    module_invoke_all($this->entityType . '_' . $hook, $entity);    // Invoke the respective entity level hook.    if ($hook == 'presave' || $hook == 'insert' || $hook == 'update' || $hook == 'delete') {      module_invoke_all('entity_' . $hook, $entity, $this->entityType);    }  }  /**   * Overridden to care exportables that are overridden.   */  public function save($entity, DatabaseTransaction $transaction = NULL) {    // Preload $entity->original by name key if necessary.    if (!empty($entity->{$this->nameKey}) && empty($entity->{$this->idKey}) && !isset($entity->original)) {      $entity->original = entity_load_unchanged($this->entityType, $entity->{$this->nameKey});    }    // Update the status for entities getting overridden.    if (entity_has_status($this->entityType, $entity, ENTITY_IN_CODE) && empty($entity->is_rebuild)) {      $entity->{$this->statusKey} |= ENTITY_CUSTOM;    }    return parent::save($entity, $transaction);  }  /**   * Overridden.   */  public function export($entity, $prefix = '') {    $vars = get_object_vars($entity);    unset($vars[$this->statusKey], $vars[$this->moduleKey], $vars['is_new']);    if ($this->nameKey != $this->idKey) {      unset($vars[$this->idKey]);    }    return entity_var_json_export($vars, $prefix);  }  /**   * Implements EntityAPIControllerInterface.   */  public function view($entities, $view_mode = 'full', $langcode = NULL, $page = NULL) {    $view = parent::view($entities, $view_mode, $langcode, $page);    if ($this->nameKey != $this->idKey) {      // Re-key the view array to be keyed by name.      $return = array();      foreach ($view[$this->entityType] as $id => $content) {        $key = isset($content['#entity']->{$this->nameKey}) ? $content['#entity']->{$this->nameKey} : NULL;        $return[$this->entityType][$key] = $content;      }      $view = $return;    }    return $view;  }}
 |