function data_export_import_export_nodes_form_submit in Data export import 7
Function to process form to export nodes.
File
- includes/
profiles/ nodes.inc, line 59 - Enables nodes to be exported and imported.
Code
function data_export_import_export_nodes_form_submit($form, &$form_state) {
// This module has not yet been extended to correctly handle data
// which has internationalization (i18n) enabled.
if (module_exists('i18n')) {
drupal_set_message(t("The data export functionality is not currently compatible with internationalization (i18n)."), 'error');
return TRUE;
}
data_export_import_export_nodes_to_file($form_state);
return TRUE;
}