function weekdays_codes in Weekdays field 7
Returns array of iCal day codes and our byte representation.
2 calls to weekdays_codes()
- weekdays_array_to_bitwise in ./
weekdays.module - Transforms selected days to the bitwise representation.
- weekdays_bitwise_to_array in ./
weekdays.module - Transform bitwise representation of selected days to an array of day codes.
File
- ./
weekdays.module, line 24
Code
function weekdays_codes() {
static $codes;
if (empty($codes)) {
foreach (array_keys(date_repeat_dow_day_options()) as $daycode) {
$codes[$daycode] = constant('WEEKDAYS_' . $daycode);
}
}
return $codes;
}