You are here

function date_repeat_interval_options in Date 7.3

Same name and namespace in other branches
  1. 8 date_repeat/date_repeat.module \date_repeat_interval_options()
  2. 7.2 date_repeat/date_repeat.module \date_repeat_interval_options()

Helper function for interval options.

2 calls to date_repeat_interval_options()
date_repeat_field_date_field_insert in date_repeat_field/date_repeat_field.devel_generate.inc
Implements hook_date_field_insert().
date_repeat_rrule_description in date_repeat/date_repeat.module
Build a description of an iCal rule.

File

date_repeat/date_repeat.module, line 66
Primary hook implementations for the Date Repeat module.

Code

function date_repeat_interval_options() {
  $options = range(0, 366);
  unset($options[0]);
  return $options;
}