You are here

function countries_country_element_validate in Countries 8

Same name and namespace in other branches
  1. 7.2 countries.module \countries_country_element_validate()
  2. 7 countries.module \countries_country_element_validate()

Validate callback for the country FAPI element.

See also

_countries_country_element_validate()

1 string reference to 'countries_country_element_validate'
_countries_element_info in ./countries.elements.inc
Actual implementation hook_element_info().

File

./countries.module, line 966
Defines the field and entity information for countries.

Code

function countries_country_element_validate($element, &$form_state) {
  module_load_include('elements.inc', 'countries');
  return _countries_country_element_validate($element, $form_state);
}