You are here

function entity_features_export in Entity API 7

Implements hook_features_export().

Features component callback.

File

./entity.features.inc, line 172
Provides Features integration for entity types using the CRUD API.

Code

function entity_features_export($data, &$export, $module_name, $entity_type) {
  return entity_features_get_controller($entity_type)
    ->export($data, $export, $module_name);
}