You are here

public static function ForwardItem::propertyDefinitions in Forward 4.0.x

Same name and namespace in other branches
  1. 4.x src/Plugin/Field/FieldType/ForwardItem.php \Drupal\forward\Plugin\Field\FieldType\ForwardItem::propertyDefinitions()

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/ForwardItem.php, line 43

Class

ForwardItem
Plugin implementation of the Forward field type.

Namespace

Drupal\forward\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
  $properties['display'] = DataDefinition::create('boolean')
    ->setLabel(t('Display'))
    ->setRequired(FALSE);
  return $properties;
}