entity_form_field_validate

function entity_form_field_validate

entity_form_field_validate($entity_type, $form, &$form_state)

Attaches field API validation to entity forms.

File

includes/common.inc, line 8236
Common functions that many Drupal modules will need to reference.

Code

function entity_form_field_validate($entity_type, $form, &$form_state) {
  // All field attach API functions act on an entity object, but during form
  // validation, we don't have one. $form_state contains the entity as it was
  // prior to processing the current form submission, and we must not update it
  // until we have fully validated the submitted input. Therefore, for
  // validation, act on a pseudo entity created out of the form values.
  $pseudo_entity = (object) $form_state['values'];
  field_attach_form_vali