function field_attach_create_bundle
Notify field.module that a new bundle was created.
The default SQL-based storage doesn't need to do anything about it, but others might.
Parameters
$entity_type: The entity type to which the bundle is bound.
$bundle: The name of the newly created bundle.
Related topics
4 calls to field_attach_create_bundle()
- field_test_create_bundle in modules/
field/ tests/ field_test.entity.inc - Creates a new bundle for test_entity entities.
- node_type_save in modules/
node/ node.module - Saves a node type to the database.
- taxonomy_vocabulary_save in modules/
taxonomy/ taxonomy.module - Saves a vocabulary.
- _comment_body_field_create in modules/
comment/ comment.module - Creates a comment_body field instance for a given node type.
File
-
modules/
field/ field.attach.inc, line 1342
Code
function field_attach_create_bundle($entity_type, $bundle) {
// Clear the cache.
field_cache_clear();
// Let other modules act on creating the bundle.
module_invoke_all('field_attach_create_bundle', $entity_type, $bundle);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.