public function DeveloperWithUser::convert in Apigee Edge 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/ DeveloperWithUser.php, line 56
Class
- DeveloperWithUser
- Resolves "developer_with_user" type parameters in routes.
Namespace
Drupal\apigee_edge\ParamConverterCode
public function convert($value, $definition, $name, array $defaults) {
/** @var \Drupal\apigee_edge\Entity\DeveloperInterface|null $developer */
$developer = $this->entityTypeManager
->getStorage('developer')
->load($value);
if ($developer) {
return $developer
->getOwner() ? $developer : NULL;
}
return NULL;
}