function entity_features_export_render in Entity API 7
Implements hook_features_export_render().
Features component callback.
File
- ./
entity.features.inc, line 181  - Provides Features integration for entity types using the CRUD API.
 
Code
function entity_features_export_render($module, $data, $export, $entity_type) {
  return entity_features_get_controller($entity_type)
    ->export_render($module, $data, $export);
}