You are here

public static function FaqFieldItem::propertyDefinitions in FAQ Field 2.0.x

Same name and namespace in other branches
  1. 8 src/Plugin/Field/FieldType/FaqFieldItem.php \Drupal\faqfield\Plugin\Field\FieldType\FaqFieldItem::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/FaqFieldItem.php, line 35

Class

FaqFieldItem
Plugin implementation of the 'faqfield' field type.

Namespace

Drupal\faqfield\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
  $properties = [];
  $properties['question'] = DataDefinition::create('string')
    ->setLabel(t('Question value'));
  $properties['answer'] = DataDefinition::create('string')
    ->setLabel(t('Answer value'));
  $properties['answer_format'] = DataDefinition::create('string')
    ->setLabel(t('Answer text format'));
  return $properties;
}