function _ctools_features_export_crud_export in Features 7.2
Same name and namespace in other branches
- 6 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.
Parameters
string $table: Table name whose schema contains ctools 'export' information.
object $object: Object that was loaded from the table.
string $indent: Indentation to prepend to each line of code.
Return value
string PHP value expression.
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 404 - Features integration for 'ctools' module.
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);
}