You are here

mongodb_shortcut.module in MongoDB 8

File

mongodb_shortcut/mongodb_shortcut.module
View source
<?php

/**
 *  Implements hook_entity_type_alter().
 */
function mongodb_shortcut_entity_type_alter(array &$entity_types) {
  if (isset($entity_types['shortcut_set'])) {
    $entity_types['shortcut_set']
      ->setStorageClass('Drupal\\mongodb_shortcut\\MongodbShortcutSetStorage');
  }
}

Functions