function hook_date_timezone_process_alter in Date 7.3
Same name and namespace in other branches
- 8 date.api.php \hook_date_timezone_process_alter()
- 7.2 date.api.php \hook_date_timezone_process_alter()
Alter the date_timezone widget element.
Parameters
array $element: An associative array containing the properties of the date_select element.
array $form_state: A keyed array containing the current state of the form.
array $context: An associative array containing the following keys:
- form: Nested array of form elements that comprise the form.
See also
date_timezone_element_process()
1 invocation of hook_date_timezone_process_alter()
- date_timezone_element_process in date_api/
date_api_elements.inc - Creates a timezone form element.
File
- ./
date.api.php, line 369 - Hooks provided by the Date module.
Code
function hook_date_timezone_process_alter(array &$element, array &$form_state, array $context) {
// @todo Document this.
}