AdminPathConfigEntityConverter::convert

public AdminPathConfigEntityConverter::convert($value, $definition, $name, array $defaults)

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 EntityConverter::convert

File

core/lib/Drupal/Core/ParamConverter/AdminPathConfigEntityConverter.php, line 61

Class

AdminPathConfigEntityConverter
Makes sure the unmodified ConfigEntity is loaded on admin pages.

Namespace

Drupal\Core\ParamConverter

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public function convert($value, $definition, $name, array $defaults) {
  $entity_type_id = $this->getEntityTypeFromDefaults($definition, $name, $defaults);
 
  // If the entity type is dynamic, confirm it to be a config entity. Static
  // entity types will have performed this check in self::applies().
  if (strpos($definition['type'], 'entity:{') === 0) {
    $entity_type = $this->entityManager->getDefinition($entity_type_id);
    if (!$entity_type->isSubclassOf('\Drupal\Core\Config\Entity\ConfigEntityInterface')) {
      return parent::convert($value, $definition, $name, $defaults);
    }
  }
 
  if ($storage = $this->entityManager->getStorage($entity_type_id)) {
    // Make sure no overrides are loaded.
    return $storage->loadOverrideFree($value);
  }
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.