我正在使用基于Drupal 8的Drupal commerce 2.x。我想在我的自定义模块中以编程方式访问商店详细信息,例如商店名称。
答案 0 :(得分:2)
首先,您需要加载商店对象:
$entity_manager = \Drupal::entityManager();
$store = $entity_manager->getStorage('commerce_store')->loadDefault();
$mail = $store->getEmail();
$name = $store->getName();
如果您有多个商店:
$store_id = 1;
$store = \Drupal\commerce_store\Entity\Store::load($store_id);
答案 1 :(得分:0)
以下代码将为您提供有关加载商店,购物车和产品对象的信息
$cart_manager = \Drupal::service('commerce_cart.cart_manager');
$cartProvider = \Drupal::service('commerce_cart.cart_provider');
$storeId = $productObj->get('stores')->getValue()[0]['target_id'];
$variationobj = \Drupal::entityTypeManager()
->getStorage('commerce_product_variation')
->load($product_variation_id);
$store = \Drupal::entityTypeManager()
->getStorage('commerce_store')
->load($storeId);
$cart = $cartProvider->getCart('default', $store);