최초의 여성 EU 집행위원장, 순탄치 않은 앞날
유럽연합(EU)을 대표하는 행정부 수반 격인 집행위원장에 여성으로는 최초로 우르줄라 폰 데어 라이엔이 취임했다. 폰 데어 라이엔은 40대에 늦깎이로 정치에 발을 들였지만 한때…
use Drupal\commerce_order\Entity\Order; /** * Implements hook_preprocess_HOOK() for commerce_checkout_order_summary. */ function bootstrap_barrio_subtheme_preprocess_commerce_checkout_order_summary(&$variables) { $order = $variables['order_entity']; // 주문 엔터티 $product_ids = []; if ($order instanceof Order) { foreach ($order->getItems() as $order_item) { $purchased_entity = $order_item->getPurchasedEntity(); if ($purchased_entity && $purchased_entity->getProduct()) { $product = $purchased_entity->getProduct(); $product_ids[] = $product->id(); } } } // Twig 템플릿에서 사용할 변수 추가 $variables['product_ids'] = $product_ids; }
유럽연합(EU)을 대표하는 행정부 수반 격인 집행위원장에 여성으로는 최초로 우르줄라 폰 데어 라이엔이 취임했다. 폰 데어 라이엔은 40대에 늦깎이로 정치에 발을 들였지만 한때…