You are here

function webform_webform_options_time_zones_alter in Webform 6.x

Same name and namespace in other branches
  1. 8.5 includes/webform.options.inc \webform_webform_options_time_zones_alter()

Implements hook_webform_options_WEBFORM_OPTIONS_ID_alter() for time zones options.

File

includes/webform.options.inc, line 38
Options alter hooks.

Code

function webform_webform_options_time_zones_alter(array &$options, array $element = []) {
  if (empty($options)) {
    $options = system_time_zones();
  }
}