drupal_form_submit

7 form.inc drupal_form_submit($form_id, &$form_state)
8 form.inc drupal_form_submit($form_id, &$form_state)

Retrieves, populates, and processes a form.

This function allows you to supply values for form elements and submit a form for processing. Compare to drupal_get_form(), which also builds and processes a form, but does not allow you to supply values.

There is no return value, but you can check to see if there are errors by calling form_get_errors().

// register a new user
$form_state = array();
$form_state['values']['name'] = 'robo-user';
$form_state['values']['mail'] = 'robouser@example.com';
$form_state['values']['pass']['pass1'] = 'password';
$form_state['values']['pass']['pass2'] = 'password';
$form_state['values']['op'] = t('Create new account');
drupal_form_submit('user_register_form', $form_state);

Parameters

$form_id: The unique string identifying the desired form. If a function with that name exists, it is called to build the form array. Modules that need to generate the same form (or very similar forms) using different $form_ids can implement hook_forms(), which maps different $form_id values to the proper form constructor function. Examples may be found in node_forms() and search_forms().

$form_state: A keyed array containing the current state of the form. Most important is the $form_state['values'] collection, a tree of data used to simulate the incoming $_POST information from a user's form submission. If a key is not filled in $form_state['values'], then the default value of the respective element is used. To submit an unchecked checkbox or other control that browsers submit by not having a $_POST entry, include the key, but set the value to NULL.

...: Any additional arguments are passed on to the functions called by drupal_form_submit(), including the unique form constructor function. For example, the node_edit form requires that a node object be passed in here when it is called. Arguments that need to be passed by reference should not be included here, but rather placed directly in the $form_state build info array so that the reference can be preserved. For example, a form builder function with the following signature:

  function mymodule_form($form, &$form_state, &$object) {
  }
  

would be called via drupal_form_submit() as follows:

  $form_state['values'] = $my_form_values;
  $form_state['build_info']['args'] = array(&$object);
  drupal_form_submit('mymodule_form', $form_state);
  

For example:

Related topics

6 calls to drupal_form_submit()

File

includes/form.inc, line 678
Functions for form and batch generation and processing.

Code

function drupal_form_submit($form_id, &$form_state) {
  if (!isset($form_state['build_info']['args'])) {
    $args = func_get_args();
    array_shift($args);
    array_shift($args);
    $form_state['build_info']['args'] = $args;
  }
  // Merge in default values.
  $form_state += form_state_defaults();

  // Populate $form_state['input'] with the submitted values before retrieving
  // the form, to be consistent with what drupal_build_form() does for
  // non-programmatic submissions (form builder functions may expect it to be
  // there).
  $form_state['input'] = $form_state['values'];

  $form_state['programmed'] = TRUE;
  $form = drupal_retrieve_form($form_id, $form_state);
  // Programmed forms are always submitted.
  $form_state['submitted'] = TRUE;

  // Reset form validation.
  $form_state['must_validate'] = TRUE;
  form_clear_error();

  drupal_prepare_form($form_id, $form, $form_state);
  drupal_process_form($form_id, $form, $form_state);
}

Comments

Drupal 6

In Drupal 6, this function was called:
http://api.drupal.org/api/function/drupal_execute/6

Needing a "Create a new node" example

Needing a "Create a new node" example, like in the Drupal 6 drupal_execute() documentation.

Could you please post one?!

Example

Creating a new node

I use this code to create a new node . but the big problem is that I can't insert data into a custom field ??!! Can anybody help

<?php
define
('DRUPAL_ROOT', getcwd());

include_once
DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);

bootstrap_invoke_all('init');
ini_set('memory_limit', '512M');

//Authenticate as user 1
user_authenticate('user', 'password');

module_load_include('inc', 'node', 'node.pages');  // new for Drupal 6

  
$form_state = array();
  
$nodeTmp = array('type' => testimonial); // a variable holding the content type

  
$form_state['values']['type'] = 'testimonial';
  
$form_state['values']['status'] = 1;
  
$form_state['values']['title'] = 'test1';   // the node's title
  
$form_state['values']['body'] = 'just my test node'; // the body, not required
  
$form_state['values']['field_name'] =  t('adham allam');
  
$form_state['values']['status'] = 1; //publish all imported nodes
  
$form_state['values']['promote'] = 1; //promote all imported nodes
  
$form_state['values']['sticky'] = 0; //remove sticky from imported nodes
  
$form_state['values']['image'] = array();
  
$form_state['values']['name'] = 'adham';
  
$form_state['values']['op'] = t('Save');  // this seems to be a required value
 

drupal_form_submit('testimonial_node_form', $form_state, (object)$nodeTmp);
?>

drupal_form_submit() example with custom field

Same as above but you need to copy the $form_state values from the specific node content type with the custom field you want to populate.

$form_state['values']['field_legacy_reference_id'] = array(
  'und' => array(
    array(
      'value' => $key,
    ),
  ),
);

You can get that data structure with hook_node submit in a little 3 line module.
function your_module_name_node_submit($node, $form, &$form_state) {
  var_dump($form_state);
}

Then manually create a piece of content and you'll get the full data structure for that content type, custom fields and all.

Any chance of an example of creating a file field?

e.g. you have the file, and need to tell drupal it's part of a new node you're creating.

Seen exampled for Drupal 6, but not 7.

Same Problem Here

Couldn't find in drupal 7, got some hint but still not successfull:(

$filename = 'test.jpg';
$image = file_get_contents('http://test.com/images/M/MV5BNjkyOTI5MDA0Ml5BMl5BanBnXkFtZTcwOTU3NzExNw@@._V1._SY0.jpg');
$file = file_save_data($image, 'public://images/poster/' . $filename, FILE_EXISTS_REPLACE);
prd($file);
$temp = $file->fid.$i;

$form_state['values']['field_poster']['und'] = array( 'fid'=>$temp, 'filename'=>$file->filename, 'uri'=>$file->uri, 'filemime'=>$file->filemime, 'filesize'=>$file->filesize, 'display' => '1',
'width' => '743',
'height' => '1100');

Needing a "webform submit"

Needing a "webform submit" example.

Login or register to post comments