entity_revision_load($entity_type, $revision_id)
Loads an entity from the database.
\Drupal::entityTypeManager() ->getStorage($entity_type) ->loadRevision($revision_id);
string $entity_type: The entity type to load, e.g. node or user.
int $revision_id: The id of the entity to load.
\Drupal\Core\Entity\EntityInterface|null The entity object, or NULL if there is no entity with the given revision id.
as of Drupal 8.0.x, will be removed before Drupal 9.0.0. Use the entity storage's loadRevision() method to load a specific entity revision:
\Drupal\Core\Entity\EntityTypeManagerInterface::getStorage()
\Drupal\Core\Entity\EntityStorageInterface::loadRevision()
\Drupal\Core\Entity\Sql\SqlContentEntityStorage
function entity_revision_load($entity_type, $revision_id) { return \Drupal::entityManager() ->getStorage($entity_type) ->loadRevision($revision_id); }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!includes!entity.inc/function/entity_revision_load/8.1.x