You are here

public static function TwitterEmbedItem::propertyDefinitions in Twitter Embed 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/TwitterEmbedItem.php, line 39

Class

TwitterEmbedItem
Plugin implementation of the 'twitter_embed_field' field type.

Namespace

Drupal\twitter_embed\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {

  // Prevent early t() calls by using the TranslatableMarkup.
  $properties['value'] = DataDefinition::create('string')
    ->setLabel(new TranslatableMarkup('Text value'))
    ->setSetting('case_sensitive', $field_definition
    ->getSetting('case_sensitive'))
    ->setRequired(TRUE);
  return $properties;
}