public function NodePreviewConverter::convert in Drupal 8
Same name in this branch
- 8 core/modules/node/src/ParamConverter/NodePreviewConverter.php \Drupal\node\ParamConverter\NodePreviewConverter::convert()
- 8 core/modules/node/src/ProxyClass/ParamConverter/NodePreviewConverter.php \Drupal\node\ProxyClass\ParamConverter\NodePreviewConverter::convert()
Same name and namespace in other branches
- 9 core/modules/node/src/ProxyClass/ParamConverter/NodePreviewConverter.php \Drupal\node\ProxyClass\ParamConverter\NodePreviewConverter::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/ node/ src/ ProxyClass/ ParamConverter/ NodePreviewConverter.php, line 73
Class
- NodePreviewConverter
- Provides a proxy class for \Drupal\node\ParamConverter\NodePreviewConverter.
Namespace
Drupal\node\ProxyClass\ParamConverterCode
public function convert($value, $definition, $name, array $defaults) {
return $this
->lazyLoadItself()
->convert($value, $definition, $name, $defaults);
}