You are here

function field_test_entity_extra_field_info_alter in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/field/tests/modules/field_test/field_test.module \field_test_entity_extra_field_info_alter()
  2. 9 core/modules/field/tests/modules/field_test/field_test.module \field_test_entity_extra_field_info_alter()

Implements hook_entity_extra_field_info_alter().

File

core/modules/field/tests/modules/field_test/field_test.module, line 178
Helper module for the Field API tests.

Code

function field_test_entity_extra_field_info_alter(&$info) {

  // Remove all extra fields from the 'no_fields' content type;
  unset($info['node']['no_fields']);
}