You are here

function entity_test_entity_extra_field_info in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/entity_test/entity_test.module \entity_test_entity_extra_field_info()

Implements hook_entity_extra_field_info().

File

core/modules/system/tests/modules/entity_test/entity_test.module, line 247
Test module for the entity API providing several entity types for testing.

Code

function entity_test_entity_extra_field_info() {
  $extra['entity_test']['bundle_with_extra_fields'] = array(
    'display' => array(
      // Note: those extra fields do not currently display anything, they are
      // just used in \Drupal\field_ui\Tests\EntityDisplayTest to test the
      // behavior of entity display objects.
      'display_extra_field' => array(
        'label' => t('Display extra field'),
        'description' => t('An extra field on the display side.'),
        'weight' => 5,
        'visible' => TRUE,
      ),
      'display_extra_field_hidden' => array(
        'label' => t('Display extra field (hidden)'),
        'description' => t('An extra field on the display side, hidden by default.'),
        'visible' => FALSE,
      ),
    ),
  );
  return $extra;
}