You are here

mongodb_aggregator.module in MongoDB 8

File

mongodb_aggregator/mongodb_aggregator.module
View source
<?php

/**
 * Implements hook_entity_type_alter().
 */
function mongodb_aggregator_entity_type_alter(array &$entity_types) {
  if (isset($entity_types['aggregator_feed'])) {
    $entity_types['aggregator_feed']
      ->setStorageClass('Drupal\\mongodb_aggregator\\Entity\\FeedStorage');
    $entity_types['aggregator_item']
      ->setStorageClass('Drupal\\mongodb_aggregator\\Entity\\ItemStorage');
  }
}