PaymentMethodConfigurationInterface.php in Payment 8.2
File
src/Plugin/Payment/MethodConfiguration/PaymentMethodConfigurationInterface.phpView source
<?php
/**
* Contains \Drupal\payment\Plugin\Payment\MethodConfiguration\PaymentMethodConfigurationInterface.
*/
namespace Drupal\payment\Plugin\Payment\MethodConfiguration;
use Drupal\Component\Plugin\PluginInspectionInterface;
use Drupal\Core\Plugin\PluginFormInterface;
/**
* A payment method configuration plugin.
*
* Plugins can additionally implement the following interfaces:
* - \Drupal\Component\Plugin\ConfigurableInterface
* Required if the plugin has any internal configuration, so it can be
* exported for recreation of the plugin at a later time.
*/
interface PaymentMethodConfigurationInterface extends PluginInspectionInterface, PluginFormInterface {
}
Interfaces
Name | Description |
---|---|
PaymentMethodConfigurationInterface | A payment method configuration plugin. |