public function Translator::setSettings in Translation Management Tool 8
Sets the array of settings.
Parameters
array $settings: The array of settings.
Return value
static The object itself for chaining.
Overrides TranslatorInterface::setSettings
File
- src/
Entity/ Translator.php, line 170
Class
- Translator
- Entity class for the tmgmt_translator entity.
Namespace
Drupal\tmgmt\EntityCode
public function setSettings(array $settings) {
$this->settings = $settings;
return $this;
}