You are here

function node_export_update_7301 in Node export 7.3

Combine Node export file module directly into Node export.

File

./node_export.install, line 77
The Node export install file.

Code

function node_export_update_7301() {

  // Upgraders with node_export_file should have the module disabled.
  if (module_exists('node_export_file')) {
    drupal_set_message('<em>Node export file</em> is deprecated.  Please delete the ' . drupal_get_path('module', 'node_export_file') . ' directory from the Drupal installation.', 'warning');
    module_disable(array(
      'node_export_file',
    ), FALSE);
  }
  return 'Node export file removed, functionality moved to Node export.';
}