public function Basic::setBrandLabel in Payment 8.2
Sets the brand label.
Parameters
string $label:
Return value
static
1 call to Basic::setBrandLabel()
- Basic::submitConfigurationForm in src/
Plugin/ Payment/ MethodConfiguration/ Basic.php - Form submission handler.
File
- src/
Plugin/ Payment/ MethodConfiguration/ Basic.php, line 349
Class
- Basic
- Provides the configuration for the payment_basic payment method plugin.
Namespace
Drupal\payment\Plugin\Payment\MethodConfigurationCode
public function setBrandLabel($label) {
$this->configuration['brand_label'] = $label;
return $this;
}