You are here

protected function PaymentFormConfigurationForm::getEditableConfigNames in Payment 8.2

Gets the configuration names that will be editable.

Return value

array An array of configuration object names that are editable if called in conjunction with the trait's config() method.

Overrides ConfigFormBaseTrait::getEditableConfigNames

File

modules/payment_form/src/Plugin/Payment/Type/PaymentFormConfigurationForm.php, line 75

Class

PaymentFormConfigurationForm
Provides the configuration form for the payment_form payment type plugin.

Namespace

Drupal\payment_form\Plugin\Payment\Type

Code

protected function getEditableConfigNames() {
  return [
    'payment_form.payment_type',
  ];
}