Same name and namespace in other branches
  1. 4.6.x modules/node.module \node_submit()
  2. 5.x modules/node/node.module \node_submit()
  3. 6.x modules/node/node.module \node_submit()
  4. 7.x modules/node/node.module \node_submit()

Prepare node for save and allow modules to make changes.

3 calls to node_submit()
blogapi_blogger_edit_post in modules/blogapi.module
Blogging API callback. Modifies the specified blog node.
blogapi_blogger_new_post in modules/blogapi.module
Blogging API callback. Inserts a new blog post as a node.
node_form_submit in modules/node.module

File

modules/node.module, line 1537
The core that allows content to be submitted to the site.

Code

function node_submit($node) {
  global $user;

  // Convert the node to an object, if necessary.
  $node = (object) $node;

  // Auto-generate the teaser, but only if it hasn't been set (e.g. by a
  // module-provided 'teaser' form item).
  if (!isset($node->teaser)) {
    $node->teaser = isset($node->body) ? node_teaser($node->body, isset($node->format) ? $node->format : NULL) : '';
  }
  $access = user_access('administer nodes');
  if ($access) {

    // Populate the "authored by" field.
    if ($account = user_load(array(
      'name' => $node->name,
    ))) {
      $node->uid = $account->uid;
    }
    else {
      $node->uid = 0;
    }
    $node->created = $node->date ? strtotime($node->date) : NULL;
  }

  // Force defaults in case people modify the form:
  $node_options = variable_get('node_options_' . $node->type, array(
    'status',
    'promote',
  ));
  foreach (array(
    'status',
    'moderate',
    'promote',
    'sticky',
    'revision',
  ) as $key) {
    if (!$access || !isset($node->{$key})) {
      $node->{$key} = in_array($key, $node_options);
    }
  }

  // Do node-type-specific validation checks.
  node_invoke($node, 'submit');
  node_invoke_nodeapi($node, 'submit');
  $node->validated = TRUE;
  return $node;
}