function _ctools_configuration_export_crud_export in Configuration Management 7
Wrapper around ctools_export_crud_export() for < 1.7 compatibility.
1 call to _ctools_configuration_export_crud_export()
- ctools_component_configuration_export_render in includes/
configuration.ctools.inc - Master implementation of hook_configuration_export_render() for all ctools components.
File
- includes/
configuration.ctools.inc, line 273
Code
function _ctools_configuration_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);
}