commerce-8.x-2.8/modules/order/src/Plugin/Field/FieldFormatter/OrderTotalSummary.php
modules/order/src/Plugin/Field/FieldFormatter/OrderTotalSummary.php
<?php
namespace Drupal\commerce_order\Plugin\Field\FieldFormatter;
use Drupal\commerce_order\OrderTotalSummaryInterface;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\FormatterBase;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Plugin implementation of the 'commerce_order_total_summary' formatter.
*
* @FieldFormatter(
* id = "commerce_order_total_summary",
* label = @Translation("Order total summary"),
* field_types = {
* "commerce_price",
* },
* )
*/
class OrderTotalSummary extends FormatterBase implements ContainerFactoryPluginInterface {
/**
* The order total summary service.
*
* @var \Drupal\commerce_order\OrderTotalSummaryInterface
*/
protected $orderTotalSummary;
/**
* Constructs a new OrderTotalSummary object.
*
* @param string $plugin_id
* The plugin_id for the formatter.
* @param mixed $plugin_definition
* The plugin implementation definition.
* @param \Drupal\Core\Field\FieldDefinitionInterface $field_definition
* The definition of the field to which the formatter is associated.
* @param array $settings
* The formatter settings.
* @param string $label
* The formatter label display setting.
* @param string $view_mode
* The view mode.
* @param array $third_party_settings
* Any third party settings.
* @param \Drupal\commerce_order\OrderTotalSummaryInterface $order_total_summary
* The order total summary service.
*/
public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, $label, $view_mode, array $third_party_settings, OrderTotalSummaryInterface $order_total_summary) {
parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $label, $view_mode, $third_party_settings);
$this->orderTotalSummary = $order_total_summary;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static(
$plugin_id,
$plugin_definition,
$configuration['field_definition'],
$configuration['settings'],
$configuration['label'],
$configuration['view_mode'],
$configuration['third_party_settings'],
$container->get('commerce_order.order_total_summary')
);
}
/**
* {@inheritdoc}
*/
public function viewElements(FieldItemListInterface $items, $langcode) {
/** @var \Drupal\commerce_order\Entity\OrderInterface $order */
$order = $items->getEntity();
$elements = [];
if (!$items->isEmpty()) {
$elements[0] = [
'#theme' => 'commerce_order_total_summary',
'#totals' => $this->orderTotalSummary->buildTotals($order),
];
}
return $elements;
}
/**
* {@inheritdoc}
*/
public static function isApplicable(FieldDefinitionInterface $field_definition) {
$entity_type = $field_definition->getTargetEntityTypeId();
$field_name = $field_definition->getName();
return $entity_type == 'commerce_order' && $field_name == 'total_price';
}
}
