public function EntityTypeParamConverter::convert in Synonyms 8
Same name and namespace in other branches
- 2.0.x src/ParamConverter/EntityTypeParamConverter.php \Drupal\synonyms\ParamConverter\EntityTypeParamConverter::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
- src/
ParamConverter/ EntityTypeParamConverter.php, line 31
Class
- EntityTypeParamConverter
- Param converter service for entity types.
Namespace
Drupal\synonyms\ParamConverterCode
public function convert($value, $definition, $name, array $defaults) {
return $this->entityTypeManager
->getDefinition($value);
}