PaymentMethodLabel.php in Payment 8.2
File
src/Plugin/views/field/PaymentMethodLabel.php
View source
<?php
namespace Drupal\payment\Plugin\views\field;
use Drupal\payment\Plugin\Payment\Method\PaymentMethodManagerInterface;
use Drupal\views\Plugin\views\field\FieldPluginBase;
use Drupal\views\ResultRow;
use Symfony\Component\DependencyInjection\ContainerInterface;
class PaymentMethodLabel extends FieldPluginBase {
protected $paymentMethodManager;
public function __construct(array $configuration, $plugin_id, $plugin_definition, PaymentMethodManagerInterface $payment_method_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->paymentMethodManager = $payment_method_manager;
}
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.method'));
}
public function render(ResultRow $values) {
$plugin_id = $this
->getValue($values);
$plugin_definition = $this->paymentMethodManager
->getDefinition($plugin_id);
return $plugin_definition['label'];
}
}