function webform_options_countries in Webform 7.4
Same name and namespace in other branches
- 6.3 includes/webform.options.inc \webform_options_countries()
- 7.3 includes/webform.options.inc \webform_options_countries()
Implements callback_webform_options().
Options list containing country names.
1 string reference to 'webform_options_countries'
- _webform_options_info in includes/
webform.options.inc - Implements hook_webform_select_options_info().
File
- includes/
webform.options.inc, line 67 - A collection of built-in select list options for Webform.
Code
function webform_options_countries($component, $flat, $arguments) {
include_once DRUPAL_ROOT . '/includes/locale.inc';
return country_get_list();
}