public static function UcAddress::resetZone in Ubercart 8.4
Resets the zone dropdown when the country is changed.
File
- uc_store/
src/ Element/ UcAddress.php, line 213
Class
- UcAddress
- Provides a form element for Ubercart address input.
Namespace
Drupal\uc_store\ElementCode
public static function resetZone($element, FormStateInterface $form_state) {
if (!isset($element['#options'][$element['#default_value']])) {
$element['#value'] = $element['#empty_value'];
}
return $element;
}