You are here

public function FieldDefinition::setTranslatable in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Field/FieldDefinition.php \Drupal\Core\Field\FieldDefinition::setTranslatable()

Sets whether the field is translatable.

Parameters

bool $translatable: Whether the field is translatable.

Return value

$this

File

core/lib/Drupal/Core/Field/FieldDefinition.php, line 231

Class

FieldDefinition
A class for defining entity field definitions.

Namespace

Drupal\Core\Field

Code

public function setTranslatable($translatable) {
  $this->definition['translatable'] = $translatable;
  return $this;
}