function form_pre_render_search

Prepares a #type 'search' render element for theme_input().

Parameters

array $element: An associative array containing the properties of the element. Properties used: #title, #value, #description, #size, #maxlength, #placeholder, #required, #attributes.

Return value

array The $element with prepared variables ready for theme_input().

Related topics

1 string reference to 'form_pre_render_search'
system_element_info in drupal/core/modules/system/system.module
Implements hook_element_info().

File

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

Code

function form_pre_render_search($element) {
  $element['#attributes']['type'] = 'search';
  element_set_attributes($element, array(
    'id',
    'name',
    'value',
    'size',
    'maxlength',
    'placeholder',
  ));
  _form_set_attributes($element, array(
    'form-search',
  ));
  return $element;
}