mongodb_shortcut.module in MongoDB 8
File
mongodb_shortcut/mongodb_shortcut.moduleView 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
Name | Description |
---|---|
mongodb_shortcut_entity_type_alter | Implements hook_entity_type_alter(). |