public function FieldConfigBase::setTranslatable in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Field/FieldConfigBase.php \Drupal\Core\Field\FieldConfigBase::setTranslatable()
Sets whether the field is translatable.
Parameters
bool $translatable: Whether the field is translatable.
Return value
$this
Overrides FieldConfigInterface::setTranslatable
File
- core/
lib/ Drupal/ Core/ Field/ FieldConfigBase.php, line 332 - Contains \Drupal\Core\Field\FieldConfigBase.
Class
- FieldConfigBase
- Base class for configurable field definitions.
Namespace
Drupal\Core\FieldCode
public function setTranslatable($translatable) {
$this->translatable = $translatable;
return $this;
}