Skip to content

Instantly share code, notes, and snippets.

@steffenr
Created July 3, 2013 08:52
Show Gist options
  • Save steffenr/5916455 to your computer and use it in GitHub Desktop.
Save steffenr/5916455 to your computer and use it in GitHub Desktop.
Use node_export to import exported nodes in drupal
<?php
if (function_exists('node_export_import')) {
$path = '.' . base_path() . drupal_get_path('module', 'my_module');
$my_node = file_get_contents($path . '/my_module_exported.drupal');
node_export_import($my_node);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment