public static function NativeJSONItem::propertyDefinitions in JSON Field 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
1 method overrides NativeJSONItem::propertyDefinitions()
- NativeBinaryJSONItem::propertyDefinitions in src/
Plugin/ Field/ FieldType/ NativeBinaryJSONItem.php - Defines field item properties.
File
- src/
Plugin/ Field/ FieldType/ NativeJSONItem.php, line 51
Class
- NativeJSONItem
- Plugin implementation of the 'json' field type.
Namespace
Drupal\json_field\Plugin\Field\FieldTypeCode
public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
$properties['value'] = DataDefinition::create('string')
->setLabel(t('JSON value'));
return $properties;
}