function mongodb_node_entity_type_alter in MongoDB 8
Implements hook_entity_type_alter
File
- mongodb_node/
mongodb_node.module, line 10 - Contains mongodb_node.module
Code
function mongodb_node_entity_type_alter(array &$entity_types) {
/** @var \Drupal\Core\Config\Entity\ConfigEntityType[] $entity_types */
foreach ($entity_types as $entity_type) {
if ($entity_type
->getStorageClass() == 'Drupal\\node\\NodeStorage') {
$entity_type
->setStorageClass('Drupal\\mongodb_node\\MongodbNodeStorage');
}
}
}