You are here

public static function MarkupItem::propertyDefinitions in Markup 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/MarkupItem.php, line 41

Class

MarkupItem
Plugin implementation of the 'markup' field type.

Namespace

Drupal\markup\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
  $properties['markup'] = DataDefinition::create('string')
    ->setLabel(t('Markup'));
  return $properties;
}