You are here

public function AdminPathConfigEntityConverter::convert in Drupal 9

Same name in this branch
  1. 9 core/lib/Drupal/Core/ParamConverter/AdminPathConfigEntityConverter.php \Drupal\Core\ParamConverter\AdminPathConfigEntityConverter::convert()
  2. 9 core/lib/Drupal/Core/ProxyClass/ParamConverter/AdminPathConfigEntityConverter.php \Drupal\Core\ProxyClass\ParamConverter\AdminPathConfigEntityConverter::convert()
Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/ProxyClass/ParamConverter/AdminPathConfigEntityConverter.php \Drupal\Core\ProxyClass\ParamConverter\AdminPathConfigEntityConverter::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/lib/Drupal/Core/ProxyClass/ParamConverter/AdminPathConfigEntityConverter.php, line 73

Class

AdminPathConfigEntityConverter
Provides a proxy class for \Drupal\Core\ParamConverter\AdminPathConfigEntityConverter.

Namespace

Drupal\Core\ProxyClass\ParamConverter

Code

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