function ResourceTypeConverter::convert

Same name and namespace in other branches
  1. 11.x core/modules/jsonapi/src/ParamConverter/ResourceTypeConverter.php \Drupal\jsonapi\ParamConverter\ResourceTypeConverter::convert()
  2. 9 core/modules/jsonapi/src/ParamConverter/ResourceTypeConverter.php \Drupal\jsonapi\ParamConverter\ResourceTypeConverter::convert()
  3. 8.9.x core/modules/jsonapi/src/ParamConverter/ResourceTypeConverter.php \Drupal\jsonapi\ParamConverter\ResourceTypeConverter::convert()

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/modules/jsonapi/src/ParamConverter/ResourceTypeConverter.php, line 47

Class

ResourceTypeConverter
Parameter converter for upcasting JSON:API resource type names to objects.

Namespace

Drupal\jsonapi\ParamConverter

Code

public function convert($value, $definition, $name, array $defaults) {
  return $this->resourceTypeRepository
    ->getByTypeName($value);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.