function hook_date_restrictions_date_popup_settings in Date Restrictions 7
Javascript settings for datepicker.
Related topics
File
- ./
date_restrictions.api.php, line 41 - Hooks provided by the Date Restrictions module.
Code
function hook_date_restrictions_date_popup_settings($element, $form_state, $context) {
$date_min = $element['#restrictions']['date_min'];
$date = date_restrictions_dateobject('now', $element);
interval_apply_interval($date, $date_min);
$settings['minDate'] = $date;
// url to ask for day availability per year/month.
$settings['checkDateCallbackUrl'] = url('date-restrictions-hook');
return $settings;
}