public function Translator::setAutoAccept

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\Entity

Code

public function setAutoAccept($value) {
  $this->auto_accept = $value;
  return $this;
}