You are here

public function FormatConverter::convert in Bibliography & Citation 2.0.x

Same name and namespace in other branches
  1. 8 src/Routing/FormatConverter.php \Drupal\bibcite\Routing\FormatConverter::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/Routing/FormatConverter.php, line 34

Class

FormatConverter
Converts export plugin id to definition array.

Namespace

Drupal\bibcite\Routing

Code

public function convert($value, $definition, $name, array $defaults) {
  if (!empty($value) && $this->formatManager
    ->hasDefinition($value)) {
    return $this->formatManager
      ->createInstance($value);
  }
  return NULL;
}