如何在Drupal Commerce中从国家/地区代码获取国家/地区名称

时间:2019-02-06 09:48:05

标签: drupal drupal-commerce

我在drupal贸易的field_data_commerce_customer_address表中获得了国家代码。现在,如何从此代码中获取完整的国家/地区名称。

1 个答案:

答案 0 :(得分:0)

您可以像这样使用drupal cores国家经理:

$country_list = \Drupal::getContainer()->get('country_manager')->getList();
$country_name = $country_list[$country_code]->render();