Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. FieldUI.php

function FieldUI::getRouteBundleParameter

Gets the route parameter that should be used for Field UI routes.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The actual entity type, not the bundle (e.g. the content entity type).

string $bundle: The bundle name.

Return value

array An array that can be used a route parameter.

7 calls to FieldUI::getRouteBundleParameter()
EntityFormDisplayEditForm::getOverviewUrl in core/modules/field_ui/src/Form/EntityFormDisplayEditForm.php
Returns the Url object for a specific entity (form) display edit form.
EntityViewDisplayEditForm::getOverviewUrl in core/modules/field_ui/src/Form/EntityViewDisplayEditForm.php
Returns the Url object for a specific entity (form) display edit form.
FieldConfigEditForm::actions in core/modules/field_ui/src/Form/FieldConfigEditForm.php
Returns an array of supported actions for the current entity form.
FieldStorageAddForm::submitForm in core/modules/field_ui/src/Form/FieldStorageAddForm.php
Form submission handler.
FieldStorageReuseForm::reuseCallback in core/modules/field_ui/src/Form/FieldStorageReuseForm.php
Callback function to handle re-using an existing field.

... See full list

File

core/modules/field_ui/src/FieldUI.php, line 78

Class

FieldUI
Static service container wrapper for Field UI.

Namespace

Drupal\field_ui

Code

public static function getRouteBundleParameter(EntityTypeInterface $entity_type, $bundle) {
    $bundle_parameter_key = $entity_type->getBundleEntityType() ?: 'bundle';
    return [
        $bundle_parameter_key => $bundle,
    ];
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal