function ajax_process_form in Drupal 7
Form element processing handler for the #ajax form property.
Parameters
$element: An associative array containing the properties of the element.
Return value
The processed element.
See also
Related topics
1 string reference to 'ajax_process_form'
- system_element_info in modules/
system/ system.module - Implements hook_element_info().
File
- includes/
ajax.inc, line 644 - Functions for use with Drupal's Ajax framework.
Code
function ajax_process_form($element, &$form_state) {
$element = ajax_pre_render_element($element);
if (!empty($element['#ajax_processed'])) {
$form_state['cache'] = TRUE;
}
return $element;
}