You are here

public function FieldStorageConfig::isTranslatable in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/field/src/Entity/FieldStorageConfig.php \Drupal\field\Entity\FieldStorageConfig::isTranslatable()

Returns whether the field supports translation.

Return value

bool TRUE if the field supports translation.

Overrides FieldStorageDefinitionInterface::isTranslatable

File

core/modules/field/src/Entity/FieldStorageConfig.php, line 587

Class

FieldStorageConfig
Defines the Field storage configuration entity.

Namespace

Drupal\field\Entity

Code

public function isTranslatable() {
  return $this->translatable;
}