public function LastTransactionFetch::__construct in Transaction 8
Constructs an LastTransactionFetch object.
Parameters
array $configuration: A configuration array containing information about the plugin instance.
string $plugin_id: The plugin ID for the plugin instance.
mixed $plugin_definition: The plugin implementation definition.
\Drupal\transaction\TransactionServiceInterface $transaction_service: The transaction service.
Overrides ContextAwarePluginBase::__construct
File
- src/
Plugin/ RulesAction/ LastTransactionFetch.php, line 58
Class
- LastTransactionFetch
- Provides an action to fetch the last executed transaction of a given target.
Namespace
Drupal\transaction\Plugin\RulesActionCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, TransactionServiceInterface $transaction_service) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->transactionService = $transaction_service;
}