如何从Drupal Commerce中的国家/地区代码获取国家/地区名称
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从Drupal Commerce中的国家/地区代码获取国家/地区名称相关的知识,希望对你有一定的参考价值。
我从drupal commerce的field_data_commerce_customer_address
表中获取了国家代码。现在如何从此代码中获取完整的国家/地区名称。
答案
你可以像这样使用drupal核心国家经理:
$country_list = \Drupal::getContainer()->get('country_manager')->getList();
$country_name = $country_list[$country_code]->render();
以上是关于如何从Drupal Commerce中的国家/地区代码获取国家/地区名称的主要内容,如果未能解决你的问题,请参考以下文章
Drupal 8.6 Commerce:在没有 module_uninstall() 的 .install 文件中从数据库中删除表。为啥?