devel_entity_test.module

Same filename in other branches
  1. 4.x tests/modules/devel_entity_test/devel_entity_test.module
  2. 5.x tests/modules/devel_entity_test/devel_entity_test.module

Test module for the entity API providing several entity types for testing.

File

tests/modules/devel_entity_test/devel_entity_test.module

View source
<?php


/**
 * @file
 * Test module for the entity API providing several entity types for testing.
 */

/**
 * Implements hook_entity_view_mode_info_alter().
 */
function devel_entity_test_entity_view_mode_info_alter(&$view_modes) {
    $entity_info = \Drupal::entityTypeManager()->getDefinitions();
    foreach ($entity_info as $entity_type => $info) {
        if ($entity_info[$entity_type]->getProvider() == 'devel_entity_test_canonical' && !isset($view_modes[$entity_type])) {
            $view_modes[$entity_type] = array(
                'full' => array(
                    'label' => t('Full object'),
                    'status' => TRUE,
                    'cache' => TRUE,
                ),
                'teaser' => array(
                    'label' => t('Teaser'),
                    'status' => TRUE,
                    'cache' => TRUE,
                ),
            );
        }
    }
}

Functions

Title Deprecated Summary
devel_entity_test_entity_view_mode_info_alter Implements hook_entity_view_mode_info_alter().