public function TransactionType::setPluginSettings in Transaction 8
Sets the plugin settings.
Parameters
array $settings: A key-value map with the settings.
Return value
\Drupal\transaction\TransactionTypeInterface The called transaction type.
Overrides TransactionTypeInterface::setPluginSettings
File
- src/
Entity/ TransactionType.php, line 184
Class
- TransactionType
- Provides a type of transaction.
Namespace
Drupal\transaction\EntityCode
public function setPluginSettings(array $settings) {
$this->transactor['settings'] = $settings;
return $this;
}