You are here

public function ApigeeEdgeLoadUnchangedEntity::convert in Apigee Edge 8

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/ApigeeEdgeLoadUnchangedEntity.php, line 61

Class

ApigeeEdgeLoadUnchangedEntity
Param converter that loads the unchanged (non cached) entity if needed.

Namespace

Drupal\apigee_edge\ParamConverter

Code

public function convert($value, $definition, $name, array $defaults) {

  // $name is the entity type in this case.
  return $this->entityTypeManager
    ->getStorage($name)
    ->loadUnchanged($value);
}