function entity_schema_test_entity_field_storage_info

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/entity_schema_test/entity_schema_test.module \entity_schema_test_entity_field_storage_info()
  2. 8.9.x core/modules/system/tests/modules/entity_schema_test/entity_schema_test.module \entity_schema_test_entity_field_storage_info()
  3. 10 core/modules/system/tests/modules/entity_schema_test/entity_schema_test.module \entity_schema_test_entity_field_storage_info()

Implements hook_entity_field_storage_info().

File

core/modules/system/tests/modules/entity_schema_test/entity_schema_test.module, line 58

Code

function entity_schema_test_entity_field_storage_info(EntityTypeInterface $entity_type) {
    if ($entity_type->id() == 'entity_test_update') {
        $definitions['custom_bundle_field'] = FieldStorageDefinition::create('string')->setName('custom_bundle_field')
            ->setLabel(t('A custom bundle field'))
            ->setRevisionable(TRUE)
            ->setTargetEntityTypeId($entity_type->id());
        return $definitions;
    }
}

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