function webform_edit_matrix_date in Webform Matrix Component 7
Implements webform_edit_matrix_date().
File
- components/
matrix.inc, line 540  - Webform module matrix component.
 
Code
function webform_edit_matrix_date($element, $form_state) {
  // Check if the user filled the required fields.
  foreach (array(
    'day',
    'month',
    'year',
  ) as $field_type) {
    if (!is_numeric($element[$field_type]['#value']) && $element['#required']) {
      form_error($element, t('!name field is required.', array(
        '!name' => check_plain($element['#title']),
      )));
      return;
    }
  }
}