You are here

class PaymentMethodOperationsProvider in Payment 8.2

Provides operations for the payment method plugin type.

Hierarchy

Expanded class hierarchy of PaymentMethodOperationsProvider

1 file declares its use of PaymentMethodOperationsProvider
PaymentMethodOperationsProviderTest.php in tests/src/Unit/Plugin/Payment/Method/PaymentMethodOperationsProviderTest.php
1 string reference to 'PaymentMethodOperationsProvider'
payment.plugin_type.yml in ./payment.plugin_type.yml
payment.plugin_type.yml

File

src/Plugin/Payment/Method/PaymentMethodOperationsProvider.php, line 11

Namespace

Drupal\payment\Plugin\Payment\Method
View source
class PaymentMethodOperationsProvider extends DefaultPluginTypeOperationsProvider {

  /**
   * {@inheritdoc}
   */
  public function getOperations($plugin_type_id) {
    $operations = parent::getOperations($plugin_type_id);
    $operations['list']['url'] = new Url('payment.payment_method.collection');
    return $operations;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DefaultPluginTypeOperationsProvider::create public static function Instantiates a new instance of this class. Overrides ContainerInjectionInterface::create
DefaultPluginTypeOperationsProvider::__construct public function Constructs a new instance.
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
PaymentMethodOperationsProvider::getOperations public function Gets plugin operations. Overrides DefaultPluginTypeOperationsProvider::getOperations
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.