function field_test_entity_info_alter

Implements hook_entity_info_alter().

File

drupal/core/modules/field/tests/modules/field_test/field_test.entity.inc, line 25
Defines an entity type.

Code

function field_test_entity_info_alter(&$entity_info) {
  foreach (field_test_entity_info_translatable() as $entity_type => $translatable) {
    $entity_info[$entity_type]['translatable'] = $translatable;
  }
}