wxt-8.x-3.011/modules/custom/wxt_ext/wxt_ext_webform/wxt_ext_webform.install
modules/custom/wxt_ext/wxt_ext_webform/wxt_ext_webform.install
<?php
/**
* @file
* Contains wxt_ext_webform.module.
*/
use Drupal\wxt_translation\TranslationHelper;
/**
* Implements hook_install().
*/
function wxt_ext_webform_install() {
// Stop here during a config sync.
if (Drupal::isConfigSyncing()) {
return;
}
$states = [
'AB' => 'Alberta',
'BC' => 'British Columbia',
'NB' => 'New Brunswick',
'MB' => 'Manitoba',
'NL' => 'Newfoundland and Labrador',
'NT' => 'Northwest Territories',
'NS' => 'Nova Scotia',
'NU' => 'Nunavut',
'ON' => 'Ontario',
'PE' => 'Prince Edward Island',
'QC' => 'Quebec',
'SK' => 'Saskatchewan',
'YT' => 'Yukon Territory',
];
// Update provinces list.
$webform = \Drupal::configFactory()
->getEditable('webform.webform_options.state_province_names');
$provinces = $webform->get('options');
$newProvinces = '';
foreach ($states as $k => $v) {
if (strpos($provinces, $k) === FALSE &&
strpos($provinces, $v) === FALSE) {
$newProvinces .= $v . ': ' . $v . "\n";
}
}
$webform->set('options', $newProvinces . $provinces)->save();
// Update provinces code list.
$webform = \Drupal::configFactory()
->getEditable('webform.webform_options.state_province_codes');
$provinces = $webform->get('options');
$newProvinces = '';
foreach ($states as $k => $v) {
if (strpos($provinces, $k) === FALSE &&
strpos($provinces, $v) === FALSE) {
$newProvinces .= $k . ': ' . $v . "\n";
}
}
$webform->set('options', $newProvinces . $provinces)->save();
$moduleHandler = \Drupal::service('module_handler');
if ($moduleHandler->moduleExists('wxt_translation')) {
TranslationHelper::importTranslations('wxt_ext_webform');
}
}
