function INTERVAL_options in Date 6
Same name and namespace in other branches
- 5.2 date_repeat/date_repeat.module \INTERVAL_options()
- 6.2 date_repeat/date_repeat.module \INTERVAL_options()
- 7 date_repeat/date_repeat.module \INTERVAL_options()
2 calls to INTERVAL_options()
- date_repeat_rrule_description in date_repeat/
date_repeat.module - Build a description of an iCal rule.
- _date_repeat_rrule_process in date_repeat/
date_repeat_form.inc - Generate the repeat setting form.
File
- date_repeat/
date_repeat.module, line 48 - This module creates a form element that allows users to select repeat rules for a date, and reworks the result into an iCal RRULE string that can be stored in the database.
Code
function INTERVAL_options() {
$options = array(
0 => t('-- Frequency'),
1 => t('Every'),
);
for ($i = 2; $i < 367; $i++) {
$options[$i] = t('Every @number', array(
'@number' => $i,
));
}
return $options;
}