public function NumberPattern::setPluginConfiguration in Commerce Core 8.2
Sets the number pattern plugin configuration.
Parameters
array $configuration: The number pattern plugin configuration.
Return value
$this
Overrides NumberPatternInterface::setPluginConfiguration
1 call to NumberPattern::setPluginConfiguration()
- NumberPattern::set in modules/
number_pattern/ src/ Entity/ NumberPattern.php - Sets the value of a property.
File
- modules/
number_pattern/ src/ Entity/ NumberPattern.php, line 155
Class
- NumberPattern
- Defines the number pattern entity class.
Namespace
Drupal\commerce_number_pattern\EntityCode
public function setPluginConfiguration(array $configuration) {
$this->configuration = $configuration;
$this->pluginCollection = NULL;
return $this;
}