function _ctools_features_export_crud_export in Features 6
Same name and namespace in other branches
- 7.2 includes/features.ctools.inc \_ctools_features_export_crud_export()
- 7 includes/features.ctools.inc \_ctools_features_export_crud_export()
Wrapper around ctools_export_crud_export() for < 1.7 compatibility.
1 call to _ctools_features_export_crud_export()
- ctools_component_features_export_render in includes/
features.ctools.inc - Master implementation of hook_features_export_render() for all ctools components.
File
- includes/
features.ctools.inc, line 257
Code
function _ctools_features_export_crud_export($table, $object, $indent = '') {
return ctools_api_version('1.7') ? ctools_export_crud_export($table, $object, $indent) : ctools_export_object($table, $object, $indent);
}