You are here

class CreditCard in Commerce Core 8.2

Same name in this branch
  1. 8.2 modules/payment/src/CreditCard.php \Drupal\commerce_payment\CreditCard
  2. 8.2 modules/payment/src/Plugin/Commerce/PaymentMethodType/CreditCard.php \Drupal\commerce_payment\Plugin\Commerce\PaymentMethodType\CreditCard

Provides the credit card payment method type.

Plugin annotation


@CommercePaymentMethodType(
  id = "credit_card",
  label = @Translation("Credit card"),
)

Hierarchy

Expanded class hierarchy of CreditCard

1 file declares its use of CreditCard
PaymentMethodTest.php in modules/payment/tests/src/Kernel/Entity/PaymentMethodTest.php

File

modules/payment/src/Plugin/Commerce/PaymentMethodType/CreditCard.php, line 17

Namespace

Drupal\commerce_payment\Plugin\Commerce\PaymentMethodType
View source
class CreditCard extends PaymentMethodTypeBase {

  /**
   * {@inheritdoc}
   */
  public function buildLabel(PaymentMethodInterface $payment_method) {
    $card_type = CreditCardHelper::getType($payment_method->card_type->value);
    $args = [
      '@card_type' => $card_type
        ->getLabel(),
      '@card_number' => $payment_method->card_number->value,
    ];
    return $this
      ->t('@card_type ending in @card_number', $args);
  }

  /**
   * {@inheritdoc}
   */
  public function buildFieldDefinitions() {
    $fields = parent::buildFieldDefinitions();
    $fields['card_type'] = BundleFieldDefinition::create('list_string')
      ->setLabel(t('Card type'))
      ->setDescription(t('The credit card type.'))
      ->setRequired(TRUE)
      ->setSetting('allowed_values_function', [
      '\\Drupal\\commerce_payment\\CreditCard',
      'getTypeLabels',
    ]);
    $fields['card_number'] = BundleFieldDefinition::create('string')
      ->setLabel(t('Card number'))
      ->setDescription(t('The last few digits of the credit card number'))
      ->setRequired(TRUE);

    // card_exp_month and card_exp_year are not required because they might
    // not be known (tokenized non-reusable payment methods).
    $fields['card_exp_month'] = BundleFieldDefinition::create('integer')
      ->setLabel(t('Card expiration month'))
      ->setDescription(t('The credit card expiration month.'))
      ->setSetting('size', 'tiny');
    $fields['card_exp_year'] = BundleFieldDefinition::create('integer')
      ->setLabel(t('Card expiration year'))
      ->setDescription(t('The credit card expiration year.'))
      ->setSetting('size', 'small');
    return $fields;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CreditCard::buildFieldDefinitions public function Builds the field definitions for entities of this bundle. Overrides PaymentMethodTypeBase::buildFieldDefinitions
CreditCard::buildLabel public function Builds a label for the given payment method. Overrides PaymentMethodTypeInterface::buildLabel
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
MessengerTrait::$messenger protected property The messenger. 29
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
PaymentMethodTypeBase::getCreateLabel public function Gets the payment method type create label. Overrides PaymentMethodTypeInterface::getCreateLabel
PaymentMethodTypeBase::getLabel public function Gets the payment method type label. Overrides PaymentMethodTypeInterface::getLabel
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
PluginBase::__construct public function Constructs a \Drupal\Component\Plugin\PluginBase object. 92
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.