You are here

public static function ViewModeSelectorItem::propertyDefinitions in Opigno certificate 3.x

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

Class

ViewModeSelectorItem
Plugin implementation of the 'list_string' field type.

Namespace

Drupal\opigno_certificate\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
  $properties['value'] = DataDefinition::create('string')
    ->setLabel(t('View mode'))
    ->addConstraint('Length', [
    'max' => 255,
  ])
    ->setRequired(TRUE);
  return $properties;
}