public function Hash::defaultConfiguration in Tamper 8
Gets default configuration for this plugin.
Return value
array An associative array with the default configuration.
Overrides TamperBase::defaultConfiguration
File
- src/
Plugin/ Tamper/ Hash.php, line 27
Class
- Hash
- Plugin implementation of the hash plugin.
Namespace
Drupal\tamper\Plugin\TamperCode
public function defaultConfiguration() {
$config = parent::defaultConfiguration();
$config[self::SETTING_OVERRIDE] = FALSE;
return $config;
}