You are here

function mongodb_field_storage_entity_info_alter in MongoDB 7

Implements hook_entity_info_alter().

File

mongodb_field_storage/mongodb_field_storage.module, line 575
Implementation of the field storage API for MongoDB.

Code

function mongodb_field_storage_entity_info_alter(&$entity_info) {

  // phpcs:ignore
  foreach ($entity_info as &$info) {

    // $info['controller class'] = 'MongoDb' . $info['controller class'];
  }
}