function FieldDefinition::setTranslatable
Same name in other branches
- 9 core/lib/Drupal/Core/Field/FieldDefinition.php \Drupal\Core\Field\FieldDefinition::setTranslatable()
- 8.9.x core/lib/Drupal/Core/Field/FieldDefinition.php \Drupal\Core\Field\FieldDefinition::setTranslatable()
- 10 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\FieldCode
public function setTranslatable($translatable) {
$this->definition['translatable'] = $translatable;
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.