You are here

public function BaseFieldDefinition::isTranslatable in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\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 220
Contains \Drupal\Core\Field\BaseFieldDefinition.

Class

BaseFieldDefinition
A class for defining entity fields.

Namespace

Drupal\Core\Field

Code

public function isTranslatable() {
  return !empty($this->definition['translatable']);
}