You are here

function bat_type_edit_form_validate in Booking and Availability Management Tools for Drupal 7

Form API validate callback for the booking type form.

1 string reference to 'bat_type_edit_form_validate'
bat_type_edit_form in modules/bat_unit/bat_type.admin.inc
Form callback: create or edit a type.

File

modules/bat_unit/bat_type.admin.inc, line 617
BatType editing UI.

Code

function bat_type_edit_form_validate(&$form, &$form_state) {

  // Notify field widgets to validate their data.
  entity_form_field_validate('bat_type', $form, $form_state);
}