function hook_field_attach_create_bundle

Act on field_attach_create_bundle().

This hook is invoked after the field module has performed the operation.

Parameters

$entity_type: The type of $entity; e.g. 'node' or 'user'.

$entity: the entity with fields to process.

Related topics

2 functions implement hook_field_attach_create_bundle()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

field_test_field_attach_create_bundle in drupal/core/modules/field/tests/modules/field_test/field_test.storage.inc
Implements hook_field_attach_create_bundle().
field_ui_field_attach_create_bundle in drupal/core/modules/field_ui/field_ui.module
Implements hook_field_attach_create_bundle().
1 invocation of hook_field_attach_create_bundle()
field_attach_create_bundle in drupal/core/modules/field/field.attach.inc
Notifies field.module that a new bundle was created.

File

drupal/core/modules/field/field.api.php, line 1207

Code

function hook_field_attach_create_bundle($entity_type, $bundle) {

  // When a new bundle is created, the menu needs to be rebuilt to add the
  // Field UI menu item tabs.
  state()
    ->set('menu_rebuild_needed', TRUE);
}