public BaseFieldDefinition::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/BaseFieldDefinition.php, line 215
Class
- BaseFieldDefinition
- A class for defining entity fields.
Namespace
Drupal\Core\Field
Code
1 2 3 | public function isTranslatable() { return ! empty ( $this ->definition[ 'translatable' ]); } |
Please login to continue.