function EntityTestHooks::entityFormModeInfoAlter

Implements hook_entity_form_mode_info_alter().

File

core/modules/system/tests/modules/entity_test/src/Hook/EntityTestHooks.php, line 183

Class

EntityTestHooks
Hook implementations for entity_test.

Namespace

Drupal\entity_test\Hook

Code

public function entityFormModeInfoAlter(&$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.