function form_state_values_clean

Removes internal Form API elements and buttons from submitted form values.

This function can be used when a module wants to store all submitted form values, for example, by serializing them into a single database column. In such cases, all internal Form API values and all form button elements should not be contained, and this function allows to remove them before the module proceeds to storage. Next to button elements, the following internal values are removed:

  • form_id
  • form_token
  • form_build_id
  • op

Parameters

$form_state: A keyed array containing the current state of the form, including submitted form values; altered by reference.

Related topics

10 calls to form_state_values_clean()
filter_admin_format_form_submit in drupal/core/modules/filter/filter.admin.inc
Form submission handler for filter_admin_format_form().
form_test_form_state_values_clean_advanced_form_submit in drupal/core/modules/system/tests/modules/form_test/form_test.module
Form submission handler for form_test_form_state_values_clean_advanced_form().
form_test_form_state_values_clean_form_submit in drupal/core/modules/system/tests/modules/form_test/form_test.module
Form submit handler for form_state_values_clean() test form.
forum_form_submit in drupal/core/modules/forum/forum.admin.inc
Form submission handler for forum_form_forum() and forum_form_container().
image_effect_form_submit in drupal/core/modules/image/image.admin.inc
Submit handler for updating an image effect.

... See full list

File

drupal/core/includes/form.inc, line 2182
Functions for form and batch generation and processing.

Code

function form_state_values_clean(&$form_state) {

  // Remove internal Form API values.
  unset($form_state['values']['form_id'], $form_state['values']['form_token'], $form_state['values']['form_build_id'], $form_state['values']['op']);

  // Remove button values.
  // form_builder() collects all button elements in a form. We remove the button
  // value separately for each button element.
  foreach ($form_state['buttons'] as $button) {

    // Remove this button's value from the submitted form values by finding
    // the value corresponding to this button.
    // We iterate over the #parents of this button and move a reference to
    // each parent in $form_state['values']. For example, if #parents is:
    //   array('foo', 'bar', 'baz')
    // then the corresponding $form_state['values'] part will look like this:
    // array(
    //   'foo' => array(
    //     'bar' => array(
    //       'baz' => 'button_value',
    //     ),
    //   ),
    // )
    // We start by (re)moving 'baz' to $last_parent, so we are able unset it
    // at the end of the iteration. Initially, $values will contain a
    // reference to $form_state['values'], but in the iteration we move the
    // reference to $form_state['values']['foo'], and finally to
    // $form_state['values']['foo']['bar'], which is the level where we can
    // unset 'baz' (that is stored in $last_parent).
    $parents = $button['#parents'];
    $last_parent = array_pop($parents);
    $key_exists = NULL;
    $values =& drupal_array_get_nested_value($form_state['values'], $parents, $key_exists);
    if ($key_exists && is_array($values)) {
      unset($values[$last_parent]);
    }
  }
}