You are here

public static function AuthorizeNetEcheck::getAccountTypes in Commerce Authorize.Net 8

The account types.

1 call to AuthorizeNetEcheck::getAccountTypes()
EcheckAddForm::buildEcheckForm in src/PluginForm/EcheckAddForm.php
Builds the eCheck form.

File

src/Plugin/Commerce/PaymentMethodType/AuthorizeNetEcheck.php, line 30

Class

AuthorizeNetEcheck
Provides the Authorize.net eCheck payment method type.

Namespace

Drupal\commerce_authnet\Plugin\Commerce\PaymentMethodType

Code

public static function getAccountTypes() {
  return [
    'checking' => t('Checking'),
    'saving' => t('Savings'),
    'business_checking' => t('Business checking'),
  ];
}