You are here

function mongodb_field_storage_field_storage_info in MongoDB 7

Implements hook_field_storage_info().

File

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

Code

function mongodb_field_storage_field_storage_info() {
  return array(
    'mongodb_field_storage' => array(
      'label' => t('MongoDB field storage'),
      'description' => t('Stores nodes and fields in a MongoDB database.'),
    ),
  );
}