keyvalue_test.module

Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/modules/keyvalue_test/keyvalue_test.module
  2. 10 core/modules/system/tests/modules/keyvalue_test/keyvalue_test.module
  3. 11.x core/modules/system/tests/modules/keyvalue_test/keyvalue_test.module

Sets up the key value entity storage.

File

core/modules/system/tests/modules/keyvalue_test/keyvalue_test.module

View source
<?php


/**
 * @file
 * Sets up the key value entity storage.
 */

/**
 * Implements hook_entity_type_alter().
 */
function keyvalue_test_entity_type_alter(array &$entity_types) {
    
    /** @var \Drupal\Core\Entity\EntityTypeInterface[] $entity_types */
    if (isset($entity_types['entity_test_label'])) {
        $entity_types['entity_test_label']->setStorageClass('Drupal\\Core\\Entity\\KeyValueStore\\KeyValueContentEntityStorage');
        $entity_keys = $entity_types['entity_test_label']->getKeys();
        $entity_types['entity_test_label']->set('entity_keys', $entity_keys + [
            'uuid' => 'uuid',
        ]);
        $entity_types['entity_test_label']->set('provider', 'keyvalue_test');
    }
}

Functions

Title Deprecated Summary
keyvalue_test_entity_type_alter Implements hook_entity_type_alter().

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.