mongodb_comment.module in MongoDB 8
File
mongodb_comment/mongodb_comment.moduleView source
<?php
/**
* Implements hook_entity_type_alter().
*/
function mongodb_comment_entity_type_alter(array &$entity_types) {
if (isset($entity_types['comment'])) {
$entity_types['comment']
->setStorageClass('Drupal\\mongodb_comment\\MongodbCommentStorage');
}
}
Functions
Name | Description |
---|---|
mongodb_comment_entity_type_alter | Implements hook_entity_type_alter(). |