interface TransactorPluginManagerInterface in Transaction 8
Plugin manager interface.
Hierarchy
- interface \Drupal\Component\Plugin\Discovery\DiscoveryInterface; interface \Drupal\Component\Plugin\Factory\FactoryInterface; interface \Drupal\Component\Plugin\Mapper\MapperInterface
- interface \Drupal\Component\Plugin\PluginManagerInterface
- interface \Drupal\transaction\TransactorPluginManagerInterface
- interface \Drupal\Component\Plugin\PluginManagerInterface
Expanded class hierarchy of TransactorPluginManagerInterface
All classes that implement TransactorPluginManagerInterface
1 file declares its use of TransactorPluginManagerInterface
- TransactionCreateDeriver.php in src/
Plugin/ RulesAction/ TransactionCreateDeriver.php
File
- src/
TransactorPluginManagerInterface.php, line 10
Namespace
Drupal\transactionView source
interface TransactorPluginManagerInterface extends PluginManagerInterface {
/**
* Gets the plugin information for all available transactors.
*
* @return array
* Array of all transactors titles keyed by plugin ID.
*/
public function getTransactors();
/**
* Gets the plugin information for a transactor.
*
* @param string $transactor_id
* The ID of the requested transactor information.
*
* @return array
* The transactor plugin information. NULL if no such transactor.
*/
public function getTransactor($transactor_id);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DiscoveryInterface:: |
public | function | Gets a specific plugin definition. | 4 |
DiscoveryInterface:: |
public | function | Gets the definition of all plugins for this type. | 3 |
DiscoveryInterface:: |
public | function | Indicates if a specific plugin definition exists. | 2 |
FactoryInterface:: |
public | function | Creates a pre-configured instance of a plugin. | 7 |
MapperInterface:: |
public | function | Gets a preconfigured instance of a plugin. | 4 |
TransactorPluginManagerInterface:: |
public | function | Gets the plugin information for a transactor. | 1 |
TransactorPluginManagerInterface:: |
public | function | Gets the plugin information for all available transactors. | 1 |