1
私はDrupal 8をベースにしたDrupal commerce 2.xを使用しています。カスタムモジュールにストア名、電子メールなどのストア詳細をプログラムでアクセスしたいと思います。Drupal 8コマースストアの設定方法
私はDrupal 8をベースにしたDrupal commerce 2.xを使用しています。カスタムモジュールにストア名、電子メールなどのストア詳細をプログラムでアクセスしたいと思います。Drupal 8コマースストアの設定方法
あなたがストアオブジェクトにロードする必要がまず:あなたは複数の店舗がある場合
$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);
は、ロードストア、カートと製品のオブジェクトについてあなたのアイデアを与えるだろう
$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);