You are here

function date_repeat_transform_checkbox_values_to_select_values in Date 7.2

Same name and namespace in other branches
  1. 8 date_repeat/date_repeat_form.inc \date_repeat_transform_checkbox_values_to_select_values()
  2. 7.3 date_repeat/date_repeat_form.inc \date_repeat_transform_checkbox_values_to_select_values()

Helper function for transforming the return value of checkbox(es) element.

Can be used for transforming the returned value of checkbox(es) element to the format of returned value of multiple select element.

1 call to date_repeat_transform_checkbox_values_to_select_values()
date_repeat_merge in date_repeat/date_repeat_form.inc
Regroup values back into a consistant array, no matter what state it is in.

File

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

Code

function date_repeat_transform_checkbox_values_to_select_values($values) {
  return array_filter($values, 'date_repeat_filter_non_zero_value');
}