You are here

function mongodb_aggregator_entity_type_alter in MongoDB 8

Implements hook_entity_type_alter().

File

mongodb_aggregator/mongodb_aggregator.module, line 6

Code

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');
  }
}