function field_test_create_bundle

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.

7 calls to field_test_create_bundle()
EntityFieldQueryTestCase::setUp in modules/simpletest/tests/entity_query.test
Sets up a Drupal site for running functional and integration tests.
FieldAttachOtherTestCase::testFieldAttachPrepareViewMultiple in modules/field/tests/field.test
Tests the 'multiple entity' behavior of field_attach_prepare_view().
FieldAttachStorageTestCase::testFieldAttachCreateRenameBundle in modules/field/tests/field.test
Test field_attach_create_bundle() and field_attach_rename_bundle().
FieldAttachStorageTestCase::testFieldAttachDeleteBundle in modules/field/tests/field.test
Test field_attach_delete_bundle().
FieldAttachStorageTestCase::testFieldAttachLoadMultiple in modules/field/tests/field.test
Test the 'multiple' load feature.

... See full list

File

modules/field/tests/field_test.entity.inc, line 165

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);
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.