apigee_m10n-8.x-1.7/src/Plugin/Field/FieldFormatter/PriceFormatter.php
src/Plugin/Field/FieldFormatter/PriceFormatter.php
<?php /* * Copyright 2018 Google Inc. * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 2 as published by the * Free Software Foundation. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public * License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., 51 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ namespace Drupal\apigee_m10n\Plugin\Field\FieldFormatter; use CommerceGuys\Intl\Formatter\CurrencyFormatterInterface; use Drupal\Core\Field\FieldDefinitionInterface; use Drupal\Core\Field\FieldItemListInterface; use Drupal\Core\Field\FormatterBase; use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Language\LanguageInterface; use Drupal\Core\Plugin\ContainerFactoryPluginInterface; use Symfony\Component\DependencyInjection\ContainerInterface; /** * Plugin implementation of the 'apigee_price' field formatter. * * @FieldFormatter( * id = "apigee_price", * label = @Translation("Formatted Price"), * field_types = { * "apigee_price" * } * ) */ class PriceFormatter extends FormatterBase implements ContainerFactoryPluginInterface { /** * The currency formatter. * * @var \CommerceGuys\Intl\Formatter\CurrencyFormatterInterface */ protected $currencyFormatter; /** * Constructs a new PriceDefaultFormatter 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 settings. * @param \CommerceGuys\Intl\Formatter\CurrencyFormatterInterface $currency_formatter * The currency formatter. */ public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, $label, $view_mode, array $third_party_settings, CurrencyFormatterInterface $currency_formatter) { parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $label, $view_mode, $third_party_settings); $this->currencyFormatter = $currency_formatter; } /** * {@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('apigee_m10n.price_formatter') ); } /** * {@inheritdoc} */ public static function defaultSettings() { return [ 'strip_trailing_zeroes' => FALSE, 'currency_display' => 'symbol', ] + parent::defaultSettings(); } /** * {@inheritdoc} */ public function settingsForm(array $form, FormStateInterface $form_state) { $elements = []; $elements['strip_trailing_zeroes'] = [ '#type' => 'checkbox', '#title' => $this->t('Strip trailing zeroes after the decimal point.'), '#default_value' => $this->getSetting('strip_trailing_zeroes'), ]; $elements['currency_display'] = [ '#type' => 'radios', '#title' => $this->t('Currency display'), '#options' => [ 'symbol' => $this->t('Symbol (e.g. "$")'), 'code' => $this->t('Currency code (e.g. "USD")'), 'none' => $this->t('None'), ], '#default_value' => $this->getSetting('currency_display'), ]; return $elements; } /** * {@inheritdoc} */ public function settingsSummary() { $summary = []; if ($this->getSetting('strip_trailing_zeroes')) { $summary[] = $this->t('Strip trailing zeroes after the decimal point.'); } else { $summary[] = $this->t('Do not strip trailing zeroes after the decimal point.'); } $currency_display = $this->getSetting('currency_display'); $currency_display_options = [ 'symbol' => $this->t('Symbol (e.g. "$")'), 'code' => $this->t('Currency code (e.g. "USD")'), 'none' => $this->t('None'), ]; $summary[] = $this->t('Currency display: @currency_display.', [ '@currency_display' => $currency_display_options[$currency_display], ]); return $summary; } /** * {@inheritdoc} */ public function viewElements(FieldItemListInterface $items, $langcode) { $options = $this->getFormattingOptions(); $elements = []; foreach ($items as $delta => $item) { $elements[$delta] = [ '#markup' => $this->currencyFormatter->format($item->amount, $item->currency_code, $options), '#cache' => [ 'contexts' => [ 'languages:' . LanguageInterface::TYPE_INTERFACE, ], ], ]; } return $elements; } /** * Gets the formatting options for the currency formatter. * * @return array * The formatting options. */ protected function getFormattingOptions() { $options = [ 'currency_display' => $this->getSetting('currency_display'), ]; if ($this->getSetting('strip_trailing_zeroes')) { $options['minimum_fraction_digits'] = 0; } return $options; } }