You are here

public function MailSafetyParamConverter::convert in Mail Safety 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

src/ParamConverter/MailSafetyParamConverter.php, line 20

Class

MailSafetyParamConverter
Class MailSafetyParamConverter.

Namespace

Drupal\mail_safety\ParamConverter

Code

public function convert($mail_id, $definition, $name, array $defaults) {
  return MailSafetyController::load($mail_id);
}