class EntityBundleRouteEnhancer in Drupal 10
Sets the bundle parameter for routes with the _field_ui option.
Hierarchy
- class \Drupal\Core\Entity\Enhancer\EntityBundleRouteEnhancer implements EnhancerInterface
Expanded class hierarchy of EntityBundleRouteEnhancer
1 string reference to 'EntityBundleRouteEnhancer'
- core.services.yml in core/
core.services.yml - core/core.services.yml
1 service uses EntityBundleRouteEnhancer
File
- core/
lib/ Drupal/ Core/ Entity/ Enhancer/ EntityBundleRouteEnhancer.php, line 14
Namespace
Drupal\Core\Entity\EnhancerView source
class EntityBundleRouteEnhancer implements EnhancerInterface {
/**
* The entity type manager service.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* Constructs a EntityBundleRouteEnhancer object.
*
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager service.
*/
public function __construct(EntityTypeManagerInterface $entity_type_manager) {
$this->entityTypeManager = $entity_type_manager;
}
/**
* {@inheritdoc}
*/
public function enhance(array $defaults, Request $request) {
if (!$this
->applies($defaults[RouteObjectInterface::ROUTE_OBJECT])) {
return $defaults;
}
if (($bundle = $this->entityTypeManager
->getDefinition($defaults['entity_type_id'])
->getBundleEntityType()) && isset($defaults[$bundle])) {
// Field UI forms only need the actual name of the bundle they're dealing
// with, not an upcasted entity object, so provide a simple way for them
// to get it.
$defaults['bundle'] = $defaults['_raw_variables']
->get($bundle);
}
return $defaults;
}
/**
* {@inheritdoc}
*/
protected function applies(Route $route) {
return $route
->hasOption('_field_ui');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EntityBundleRouteEnhancer:: |
protected | property | The entity type manager service. | |
EntityBundleRouteEnhancer:: |
protected | function | ||
EntityBundleRouteEnhancer:: |
public | function |
Updates the defaults for a route definition based on the request. Overrides EnhancerInterface:: |
|
EntityBundleRouteEnhancer:: |
public | function | Constructs a EntityBundleRouteEnhancer object. |