1 field_test.entity.inc | field_test_create_bundle($bundle, $text = NULL) |
Creates a new bundle for test_entity entities.
Parameters
$bundle: The machine-readable name of the bundle.
$text: The human-readable name of the bundle. If none is provided, the machine name will be used.
File
- core/
modules/ field/ tests/ field_test/ field_test.entity.inc, line 161 - Defines an entity type.
Code
function field_test_create_bundle($bundle, $text = NULL) {
$bundles = state_get('field_test_bundles', array('test_bundle' => array('label' => 'Test Bundle')));
$bundles += array($bundle => array('label' => $text ? $text : $bundle));
state_set('field_test_bundles', $bundles);
$info = field_test_entity_info();
foreach ($info as $type => $type_info) {
field_attach_create_bundle($type, $bundle);
}
}