function entity_test_entity_form_mode_info_alter
Same name in other branches
- 9 core/modules/system/tests/modules/entity_test/entity_test.module \entity_test_entity_form_mode_info_alter()
- 10 core/modules/system/tests/modules/entity_test/entity_test.module \entity_test_entity_form_mode_info_alter()
Implements hook_entity_form_mode_info_alter().
File
-
core/
modules/ system/ tests/ modules/ entity_test/ entity_test.module, line 281
Code
function entity_test_entity_form_mode_info_alter(&$form_modes) {
$entity_info = \Drupal::entityTypeManager()->getDefinitions();
foreach ($entity_info as $entity_type => $info) {
if ($entity_info[$entity_type]->getProvider() == 'entity_test') {
$form_modes[$entity_type]['compact'] = [
'label' => t('Compact version'),
'status' => TRUE,
];
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.