You are here

mongodb_comment.module in MongoDB 8

File

mongodb_comment/mongodb_comment.module
View 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