public function EntityRevisionParamConverter::convert

public EntityRevisionParamConverter::convert($value, $definition, $name, array $defaults)

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

core/lib/Drupal/Core/ParamConverter/EntityRevisionParamConverter.php, line 47

Class

EntityRevisionParamConverter
Parameter converter for upcasting entity revision IDs to full objects.

Namespace

Drupal\Core\ParamConverter

Code

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

© 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!lib!Drupal!Core!ParamConverter!EntityRevisionParamConverter.php/function/EntityRevisionParamConverter::convert/8.1.x