You are here

function date_restrictions_date_combo_process_alter in Date Restrictions 7

Implements hook_date_combo_process_alter().

See also

date_restrictions_date_text_process_alter()

date_restrictions_date_select_process_alter()

date_restrictions_date_popup_process_alter()

File

./date_restrictions.module, line 115

Code

function date_restrictions_date_combo_process_alter(&$element, $form_state, $context) {
  if (empty($element['#restrictions'])) {
    return;
  }
  $element['value']['#restrictions'] = $element['#restrictions'];
  $element['value2']['#restrictions'] = $element['#restrictions2'];
}