public static function OpignoTrueFalseFieldType::propertyDefinitions in Opigno module 8
Same name and namespace in other branches
- 3.x src/Plugin/Field/FieldType/OpignoTrueFalseFieldType.php \Drupal\opigno_module\Plugin\Field\FieldType\OpignoTrueFalseFieldType::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/ OpignoTrueFalseFieldType.php, line 27
Class
- OpignoTrueFalseFieldType
- Plugin implementation of the 'opigno_true_false_field' field type.
Namespace
Drupal\opigno_module\Plugin\Field\FieldTypeCode
public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
// Prevent early t() calls by using the TranslatableMarkup.
$properties['value'] = DataDefinition::create('integer')
->setLabel(new TranslatableMarkup('Answer value'))
->setRequired(TRUE);
return $properties;
}