public function FieldStorageConfig::isTranslatable in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 589 - Contains \Drupal\field\Entity\FieldStorageConfig.
Class
- FieldStorageConfig
- Defines the Field storage configuration entity.
Namespace
Drupal\field\EntityCode
public function isTranslatable() {
return $this->translatable;
}