function MenuLinkPluginConverter::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/ParamConverter/MenuLinkPluginConverter.php, line 34

Class

MenuLinkPluginConverter
Parameter converter for upcasting entity ids to full objects.

Namespace

Drupal\Core\ParamConverter

Code

public function convert($value, $definition, $name, array $defaults) {
  if ($value) {
    try {
      return $this->menuLinkManager
        ->createInstance($value);
    } catch (PluginException $e) {
      // Suppress the error.
    }
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.