Skip to content
Snippets Groups Projects
Commit 2fdc28d0 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #802524 by CrookedNumber, aaronbauman: node_add() still unnecessarily...

- Patch #802524 by CrookedNumber, aaronbauman: node_add() still unnecessarily complex (and confusing).
parent 60a846a1
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -56,21 +56,15 @@ function theme_node_add_list($variables) {
/**
* Present a node submission form or a set of links to such forms.
* Returns a node submission form.
*/
function node_add($type) {
global $user;
$types = node_type_get_types();
$type = isset($type) ? str_replace('-', '_', $type) : NULL;
// If a node type has been specified, validate its existence.
if (isset($types[$type])) {
// Initialize settings:
$node = (object) array('uid' => $user->uid, 'name' => (isset($user->name) ? $user->name : ''), 'type' => $type, 'language' => LANGUAGE_NONE);
drupal_set_title(t('Create @name', array('@name' => $types[$type]->name)), PASS_THROUGH);
$output = drupal_get_form($type . '_node_form', $node);
}
$node = (object) array('uid' => $user->uid, 'name' => (isset($user->name) ? $user->name : ''), 'type' => $type, 'language' => LANGUAGE_NONE);
drupal_set_title(t('Create @name', array('@name' => $types[$type]->name)), PASS_THROUGH);
$output = drupal_get_form($type . '_node_form', $node);
return $output;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment