function field_test_create_bundle in SimpleTest 7
Create a new bundle for test_entity objects.
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
- tests/
field_test.module, line 114
Code
function field_test_create_bundle($bundle, $text = NULL) {
$bundles = variable_get('field_test_bundles', array(
'test_bundle' => array(
'label' => 'Test Bundle',
),
));
$bundles += array(
$bundle => array(
'label' => $text ? $text : $bundle,
),
);
variable_set('field_test_bundles', $bundles);
$info = field_test_entity_info();
foreach ($info as $type => $type_info) {
field_attach_create_bundle($type, $bundle);
}
}