You are here

public static function LayoutTranslationItem::propertyDefinitions in Layout Builder Symmetric Translations 8

Defines field item properties.

Properties that are required to constitute a valid, non-empty item should be denoted with \Drupal\Core\TypedData\DataDefinition::setRequired().

Return value

\Drupal\Core\TypedData\DataDefinitionInterface[] An array of property definitions of contained properties, keyed by property name.

Overrides FieldItemInterface::propertyDefinitions

See also

\Drupal\Core\Field\BaseFieldDefinition

File

src/Plugin/Field/FieldType/LayoutTranslationItem.php, line 29

Class

LayoutTranslationItem
Plugin implementation of the 'layout_section' field type.

Namespace

Drupal\layout_builder_st\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
  $properties['value'] = DataDefinition::create('layout_translation')
    ->setLabel(new TranslatableMarkup('Layout Translation'))
    ->setRequired(FALSE);
  return $properties;
}