You are here

PaymentTypeLabel.php in Payment 8.2

File

src/Plugin/views/field/PaymentTypeLabel.php
View source
<?php

namespace Drupal\payment\Plugin\views\field;

use Drupal\payment\Plugin\Payment\Type\PaymentTypeManagerInterface;
use Drupal\views\Plugin\views\field\FieldPluginBase;
use Drupal\views\ResultRow;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Renders a payment type's plugin ID as the plugin's label.
 *
 * @ViewsField("payment_type_label")
 */
class PaymentTypeLabel extends FieldPluginBase {

  /**
   * The plugin manager.
   *
   * @var \Drupal\payment\Plugin\Payment\Type\PaymentTypeManagerInterface
   */
  protected $paymentTypeManager;

  /**
   * Constructs a new instance.
   *
   * @param mixed[] $configuration
   *   A configuration array containing information about the plugin instance.
   * @param string $plugin_id
   *   The plugin_id for the plugin instance.
   * @param mixed $plugin_definition
   *   The plugin implementation definition.
   * @param \Drupal\payment\Plugin\Payment\Type\PaymentTypeManagerInterface $payment_type_manager
   */
  public function __construct(array $configuration, $plugin_id, $plugin_definition, PaymentTypeManagerInterface $payment_type_manager) {
    parent::__construct($configuration, $plugin_id, $plugin_definition);
    $this->paymentTypeManager = $payment_type_manager;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
    return new static($configuration, $plugin_id, $plugin_definition, $container
      ->get('plugin.manager.payment.type'));
  }

  /**
   * {@inheritdoc}
   */
  public function render(ResultRow $values) {
    $plugin_id = $this
      ->getValue($values);
    $plugin_definition = $this->paymentTypeManager
      ->getDefinition($plugin_id);
    return $plugin_definition['label'];
  }

}

Classes

Namesort descending Description
PaymentTypeLabel Renders a payment type's plugin ID as the plugin's label.