function node_object_prepare

Same name and namespace in other branches
  1. 7.x drupal-7.x/modules/node/node.module \node_object_prepare()
1 call to node_object_prepare()
node_form in drupal-6.x/modules/node/node.pages.inc
Generate the node add/edit form array.

Archivo

drupal-6.x/modules/node/node.pages.inc, line 70
Page callbacks for adding, editing, deleting, and revisions management for content.

Código

function node_object_prepare(&$node) {
  // Set up default values, if required.
  $node_options = variable_get('node_options_' . $node->type, array('status', 'promote'));
  // If this is a new node, fill in the default values.
  if (!isset($node->nid)) {
    foreach (array('status', 'promote', 'sticky') as $key) {
      $node->$key = in_array($key, $node_options);
    }
    global $user;
    $node->uid = $user->uid;
    $node->created = time();
  }
  else {
    $node->date = format_date($node->created, 'custom', 'Y-m-d H:i:s O');
    // Remove the log message from the original node object.
    $node->log = NULL;
  }
  // Always use the default revision setting.
  $node->revision = in_array('revision', $node_options);

  node_invoke($node, 'prepare');
  node_invoke_nodeapi($node, 'prepare');
}