form_set_value
- Versions
- 4.7 – 5
form_set_value($form, $value)- 6
form_set_value($form_item, $value, &$form_state)- 7
form_set_value($element, $value, &$form_state)
Change submitted form values during the form processing cycle.
Use this function to change the submitted value of a form item in the validation phase so that it persists in $form_state through to the submission handlers in the submission phase.
Since $form_state['values'] can either be a flat array of values, or a tree of nested values, some care must be taken when using this function. Specifically, $form_item['#parents'] is an array that describes the branch of the tree whose value should be updated. For example, if we wanted to update $form_state['values']['one']['two'] to 'new value', we'd pass in $form_item['#parents'] = array('one', 'two') and $value = 'new value'.
Parameters
$form_item The form item that should have its value updated. Keys used: #parents, #value. In most cases you can just pass in the right element from the $form array.
$value The new value for the form item.
$form_state The array where the value change should be recorded.
Related topics
Code
includes/form.inc, line 1319
<?php
function form_set_value($form_item, $value, &$form_state) {
_form_set_value($form_state['values'], $form_item, $form_item['#parents'], $value);
}
?>Login or register to post comments 
Code Example
Having fought with this for a couple hours now, I thought I'd leave notes of what I found here.
Before I begin:
http://drupal.org/node/160160 is unclear, but is the top result after this page on search engines due to length. This page may need to be updated if the proper documentation can not be understood from this page.
When using drupal 6, this is the process you must use:
Optional
<?php
function hook_form(){
//... Previous Code
// You *can* (and should) declare a placeholder for the value to be inserted into later.
$form['placeholder'] = array(
'#type' => 'value'
,'#value' = > NULL // Placeholder value. Meaningless
);
//... Other Code
}
?>
Required
Because the form_set_value function requires more arguments than standard hook_validate functions provide, you must use hook_form_alter to do custom validation for your form:
<?phpfunction hook_form_alter(&$form, $form_state, $form_id){
if ($form_id == '{node_type}_node_form') {
$form['#validate'][] = 'hook_validate_custom';
}
?>
With the form set to validate through your new function, create it. Note that $form_state must be a reference.
<?phphook_validate_custom($form, &$form_state){
// ... Validation Code
form_set_value( array('#parents' => array('array_key_parent', 'array_key_to_replace')) , $value, $form_state);
// ... Other Code
}
?>
Sorry for the inline array.
Here's a breakdown of the three parameters you must pass in:
<?php$first_parameter = array(
'#parents' => array(
'first_key_in_path'
,'second_key_in_path'
,'key_to_replace' // Always the last one. *Will* create if it doesn't exist.
)
);
?>
Another example
I banged my head against this same problem for about an hour. Here's how I solved it.
What I wanted to do
I needed to hide the default "Title" field and automatically populate it using two CCK fields: "First name" and "Last name." The value of the "Title" field would be: "[First name] [Last name]."
How I did it
First, I had to implement hook_form_FORM_ID_alter() for the "profile" content type's node form:
<?php
function mymodule_form_profile_node_form_alter(&$form, &$form_state) {
// Hide the extraneous title ("Name") field
$form['title']['#type'] = 'hidden';
// Add placeholder for #value
$form['title']['#value'] = NULL;
// Add a validation function that will fill in the value of the title ("Name") field
$form['#validate'][] = 'mymodule_profile_node_form_validate';
}
?>
In this case, the placeholder value was required. The form would throw this error otherwise: "The Title field is required."
Second, I implemented the validation form I assigned in hook_form_FORM_ID_alter() above:
<?phpfunction mymodule_profile_node_form_validate($form, &$form_state) {
$name = $form_state['values']['field_profile_firstname'][0]['value'] . ' ' . $form_state['values']['field_profile_lastname'][0]['value'];
form_set_value($form['title'], $name, $form_state);
}
?>
In this case, I was able to pass form_set_value() the form element itself:
$form['title']. Passing it a nested array, as described in the above comment, failed.I came across the same
I came across the same problem however hook_form_alter() has it's own purpose and if we are using it to make something work in forms that the documentation says should work without specifically mentioning hook_form_alter(), odds are good that we are simply missing something we should be doing.
After much research starting with this premise here's what you probably should be doing to make form_set_value() work from a validate routine (comments that are not normal to the coded but have been added to help understanding are IN ALL CAPS):
<?php
function yourmodule_yourform_validate($form, &$form_state) {
if ('your test condition here') {
form_set_error('yourfield', t('Your message')); # <-- OPTIONAL, IF YOUR TEST IS NOT PICKING UP AN ERROR CONDITION, OBVIOUSLY DON'T DO THIS.
form_set_value($form['yourfield'], 'some value', $form_state);
$form_state['rebuild'] = TRUE; # <-- THIS IS CRITICAL OTHERWISE YOUR FORM WILL NOT GET REBUILT TO INCORPORATE YOUR CHANGES
# IF YOU HAVE A NEED TO MAKE YOUR OWN CHANGES BUT WITHOUT OVER WRITING THE USER'S INPUT THEN INSTEAD OF USING form_set_value YOU COULD PROBABLY USE THE STORAGE LIKE THIS:
$form_state['storage']['my thing to store'] = 'something';
}
}
function yourmodule_somefunction_that_starts_your_form() {
$output .= drupal_get_form('yourmodule_yourform');
return $output;
}
function yourmodule_yourform(&$form_state = array()) { # <-- THIS IS CRITICAL, YOU MUST PICK UP $form_state OTHERWISE YOU CANNOT GET YOUR CUSTOMIZATIONS OR THE USER'S INPUT AND THEREFORE ALL AS "$form_state['rebuild'] = TRUE" USED IN THE VALIDATE ROUTINE WILL DO IS RE-INITIALIZE THE FORM
$form['mb'] = array(
'#type' => 'fieldset',
'#title' => t('My Administration'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['mb']['name'] = array(
'more stuff like above for this field too'
);
yourmodule_yourform_restore_user_input($form, $form_state);
$form_state['rebuild'] = FALSE;
return $form;
}
function yourmodule_yourform_restore_user_input(&$form, $form_state) {
# DON'T DO ANYTHING IF THE FORM IS NOT BEING REBUILT
if (!is_array($form_state['values']) || count($form_state['values']) < 1 || empty($form_state['rebuild'])) return;
# Your code for restoring the user's input.
# This will copy data over from $form_state which contains the last POST variables in
# $form_state['values'] to $form'. Exactly how you do this will be specific to you. It will
# probably also be dependent on whether you set the "tree" option. I personally had
# simple needs and was able to use a recursive routine that simply matched up array
# keys (recursive because I used fieldsets and therefore had a hierarchy in $form).
}
?>
For readers whose first language is not english... (and others)
In the sentence "Change submitted form values during the form processing cycle", the verb is "change".
I realized that on first reading, one could think that it was "submitted", "form" or "values", changing somehow its intended meaning...