
| Current Path : /var/www/html/store/web/modules/contrib/commerce_funds/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/store/web/modules/contrib/commerce_funds/src/WithdrawalMethodManager.php |
<?php
namespace Drupal\commerce_funds;
use Drupal\Core\Plugin\DefaultPluginManager;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
/**
* Withdrawal method plugin manager.
*/
class WithdrawalMethodManager extends DefaultPluginManager implements WithdrawalMethodManagerInterface {
/**
* {@inheritdoc}
*/
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
parent::__construct('Plugin/Funds/WithdrawalMethod', $namespaces, $module_handler, 'Drupal\commerce_funds\WithdrawalMethodInterface', 'Drupal\commerce_funds\Annotation\WithdrawalMethod');
$this->alterInfo('commerce_funds_withdrawal_methods_info');
$this->setCacheBackend($cache_backend, 'commerce_funds_withdrawal_methods');
}
}