I get the country code from field_data_commerce_customer_address
table in drupal commerce. Now how to get the full country name from this code.
Asked
Active
Viewed 764 times
2
1 Answers
1
You can use drupal cores country manager like this :
$country_list = \Drupal::getContainer()->get('country_manager')->getList();
$country_name = $country_list[$country_code]->render();

LouisCuny
- 21
- 1