You are here

function entity_test_create_bundle in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/entity_test/entity_test.module \entity_test_create_bundle()
  2. 9 core/modules/system/tests/modules/entity_test/entity_test.module \entity_test_create_bundle()

Creates a new bundle for entity_test entities.

Parameters

string $bundle: The machine-readable name of the bundle.

string $text: (optional) The human-readable name of the bundle. If none is provided, the machine name will be used.

string $entity_type: (optional) The entity type for which the bundle is created. Defaults to 'entity_test'.

44 calls to entity_test_create_bundle()
BulkDeleteTest::setUp in core/modules/field/tests/src/Kernel/BulkDeleteTest.php
BundleClassTest::testAmbiguousBundleClassExceptionCreate in core/tests/Drupal/KernelTests/Core/Entity/BundleClassTest.php
Checks exception is thrown if two bundles share the same bundle class.
BundleClassTest::testAmbiguousBundleClassExceptionEntityTypeRepository in core/tests/Drupal/KernelTests/Core/Entity/BundleClassTest.php
Checks exception is thrown if two entity types share the same bundle class.
BundleClassTest::testBundleClassShouldExist in core/tests/Drupal/KernelTests/Core/Entity/BundleClassTest.php
Checks exception thrown if a bundle class doesn't exist.
BundleClassTest::testBundleClassShouldExtendEntityClass in core/tests/Drupal/KernelTests/Core/Entity/BundleClassTest.php
Checks exception thrown if a bundle class doesn't extend the entity class.

... See full list

File

core/modules/system/tests/modules/entity_test/entity_test.module, line 200
Test module for the entity API providing several entity types for testing.

Code

function entity_test_create_bundle($bundle, $text = NULL, $entity_type = 'entity_test') {
  $bundles = \Drupal::state()
    ->get($entity_type . '.bundles', [
    $entity_type => [
      'label' => 'Entity Test Bundle',
    ],
  ]);
  $bundles += [
    $bundle => [
      'label' => $text ? $text : $bundle,
    ],
  ];
  \Drupal::state()
    ->set($entity_type . '.bundles', $bundles);
  \Drupal::service('entity_bundle.listener')
    ->onBundleCreate($bundle, $entity_type);
}