You are here

public function ViewModeConverter::convert in Hierarchical Term Formatter 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

tests/modules/hierarchical_term_formatter_test/src/ParamConverter/ViewModeConverter.php, line 34

Class

ViewModeConverter
Converts route parameter into loaded view mode.

Namespace

Drupal\hierarchical_term_formatter_test\ParamConverter

Code

public function convert($value, $definition, $name, array $defaults) {
  $display_name = 'node.' . $value;
  return $this->storage
    ->load($display_name);
}