public function Translator::setAutoAccept in Translation Management Tool 8
Sets whether to skip the reviewing process and automatically accept all translations.
Parameters
bool: The value to set.
Return value
$this
Overrides TranslatorInterface::setAutoAccept
File
- src/
Entity/ Translator.php, line 219
Class
- Translator
- Entity class for the tmgmt_translator entity.
Namespace
Drupal\tmgmt\EntityCode
public function setAutoAccept($value) {
$this->auto_accept = $value;
return $this;
}