You are here

function biblio_ui_create_fields_validate in Bibliography Module 7.3

Validate handler; Attaching the field on the bundle.

File

modules/biblio_ui/biblio_ui.module, line 926
Main functionality file for the biblio UI module.

Code

function biblio_ui_create_fields_validate($form, $form_state) {
  if (!$form_state['values']['field_name']) {
    form_set_error('field_name', t('Please select a field.'));
  }
}