You are here

public function EntityRevisionParamConverter::convert in Entity API 8.0

Converts path variables to their corresponding objects.

Parameters

mixed $value: The raw value.

mixed $definition: The parameter definition provided in the route options.

string $name: The name of the parameter.

array $defaults: The route defaults array.

Return value

mixed|null The converted parameter value.

Overrides ParamConverterInterface::convert

File

src/ParamConverter/EntityRevisionParamConverter.php, line 40
Contains \Drupal\entity\ParamConverter\EntityRevisionParamConverter.

Class

EntityRevisionParamConverter
Parameter converter for single revisions.

Namespace

Drupal\entity\ParamConverter

Code

public function convert($value, $definition, $name, array $defaults) {
  list(, $entity_type_id) = explode(':', $definition['type']);
  $entity_storage = $this->entityTypeManager
    ->getStorage($entity_type_id);
  return $entity_storage
    ->loadRevision($value);
}