You are here

function hook_date_popup_process_alter in Date 7.3

Same name and namespace in other branches
  1. 8 date.api.php \hook_date_popup_process_alter()
  2. 7.2 date.api.php \hook_date_popup_process_alter()

Alter the date_popup widget element.

Parameters

array $element: An associative array containing the properties of the date_popup 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_popup_element_process()

1 function implements hook_date_popup_process_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

date_all_day_date_popup_process_alter in date_all_day/date_all_day.module
Implements hook_date_popup_process_alter().
1 invocation of hook_date_popup_process_alter()
date_popup_element_process in date_popup/date_popup.module
Javascript popup element processing.

File

./date.api.php, line 303
Hooks provided by the Date module.

Code

function hook_date_popup_process_alter(array &$element, array &$form_state, array $context) {

  // Hide or show the element in reaction to the all_day status for the element.
  $all_day_id = !empty($element['#date_all_day_id']) ? $element['#date_all_day_id'] : '';
  if ($all_day_id != '' && array_key_exists('time', $element)) {
    $element['time']['#states'] = array(
      'visible' => array(
        'input[name="' . $all_day_id . '"]' => array(
          'checked' => FALSE,
        ),
      ),
    );
  }
}