You are here

public function TransactorPluginInterface::getExecutionIndications in Transaction 8

Compose a messsage with execution indications for the given transaction.

This message is commonly shown to the users upon transaction execution.

Parameters

\Drupal\transaction\TransactionInterface $transaction: The pending transaction to compose indications about.

string $langcode: (optional) For which language the execution indications should be composed, defaults to the current content language.

Return value

string|\Drupal\Core\StringTranslation\TranslatableMarkup A string or translatable markup with the generated message.

1 method overrides TransactorPluginInterface::getExecutionIndications()
TransactorBase::getExecutionIndications in src/TransactorBase.php
Compose a messsage with execution indications for the given transaction.

File

src/TransactorPluginInterface.php, line 104

Class

TransactorPluginInterface
Defines the interface for transactor plugins.

Namespace

Drupal\transaction

Code

public function getExecutionIndications(TransactionInterface $transaction, $langcode = NULL);