You are here

function date_repeat_add_addition in Date 7.3

Same name and namespace in other branches
  1. 8 date_repeat/date_repeat_form.inc \date_repeat_add_addition()
  2. 7 date_repeat/date_repeat_form.inc \date_repeat_add_addition()
  3. 7.2 date_repeat/date_repeat_form.inc \date_repeat_add_addition()

Add addition to date repeat.

1 string reference to 'date_repeat_add_addition'
_date_repeat_rrule_process in date_repeat/date_repeat_form.inc
Generate the repeat setting form.

File

date_repeat/date_repeat_form.inc, line 763
Add a date repeat selection form to a date field.

Code

function date_repeat_add_addition($form, &$form_state) {
  $parents = $form_state['triggering_element']['#array_parents'];
  $instance = implode('-', array_slice($parents, 0, count($parents) - 2));
  $form_state['num_additions'][$instance]++;
  $form_state['rebuild'] = TRUE;
}