function weekdays_valid_date in Weekdays field 7
Checks if a date's week day matches the allowed weekdays.
1 call to weekdays_valid_date()
- weekdays_date_restrictions_allowed_values_valid_date in modules/
weekdays_date_restrictions/ weekdays_date_restrictions.module - Implements allowed_values_valid_date callback.
File
- ./
weekdays.module, line 247
Code
function weekdays_valid_date($date, $weekdays) {
$dow = array_keys(date_repeat_dow_day_options(TRUE));
$wday = $dow[date_day_of_week($date)];
return in_array($wday, $weekdays);
}