public function FieldConfigBase::isTranslatable in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Field/FieldConfigBase.php \Drupal\Core\Field\FieldConfigBase::isTranslatable()
- 10 core/lib/Drupal/Core/Field/FieldConfigBase.php \Drupal\Core\Field\FieldConfigBase::isTranslatable()
Returns whether the field is translatable.
Return value
bool TRUE if the field is translatable.
Overrides FieldDefinitionInterface::isTranslatable
File
- core/
lib/ Drupal/ Core/ Field/ FieldConfigBase.php, line 329
Class
- FieldConfigBase
- Base class for configurable field definitions.
Namespace
Drupal\Core\FieldCode
public function isTranslatable() {
// A field can be enabled for translation only if translation is supported.
return $this->translatable && $this
->getFieldStorageDefinition()
->isTranslatable();
}