You are here

function date_repeat_value_callback in Date 7

A value callback for the date_repeat_rrule element.

1 string reference to 'date_repeat_value_callback'
date_repeat_element_info in date_repeat/date_repeat.module
Implement hook_element_info().

File

date_repeat/date_repeat.module, line 33
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 date_repeat_value_callback($element, $input = FALSE, &$form_state) {
  if (!$input) {
    return array();
  }
}