Skip to content

Instantly share code, notes, and snippets.

@jasonglisson
Last active September 14, 2017 01:57
Show Gist options
  • Select an option

  • Save jasonglisson/d1791538d81f92b43794 to your computer and use it in GitHub Desktop.

Select an option

Save jasonglisson/d1791538d81f92b43794 to your computer and use it in GitHub Desktop.
Drupal 7: Create and save node programmatically
<?php
/**
* Basic Node Creation Example for Drupal 7
*
* This example:
* - Assumes a standard Drupal 7 installation
* - Does not verify that the field values are correct
*/
$body_text = 'This is the body text I want entered with the node.';
$node = new stdClass();
$node->type = 'article';
node_object_prepare($node);
$node->title = 'Node Created Programmatically on ' . date('c');
$node->language = LANGUAGE_NONE;
$node->body[$node->language][0]['value'] = $body_text;
$node->body[$node->language][0]['summary'] = text_summary($body_text);
$node->body[$node->language][0]['format'] = 'filtered_html';
$path = 'content/programmatically_created_node_' . date('YmdHis');
$node->path = array('alias' => $path);
node_save($node);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment