Creates a new bundle for entity_test entities.
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'.
function entity_test_create_bundle($bundle, $text = NULL, $entity_type = 'entity_test') {
$bundles = Drupal::state()
->get($entity_type . '.bundles') ?: array(
'entity_test' => array(
'label' => 'Entity Test Bundle',
),
);
$bundles += array(
$bundle => array(
'label' => $text ? $text : $bundle,
),
);
Drupal::state()
->set($entity_type . '.bundles', $bundles);
entity_invoke_bundle_hook('create', $entity_type, $bundle);
}