You are here

function form_type_country_value in Countries 7.2

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

Helper function to determine the value for a country form element.

See also

_form_type_country_value()

File

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

Code

function form_type_country_value($element, $input = FALSE) {
  module_load_include('elements.inc', 'countries');
  return _form_type_country_value($element, $input);
}