You are here

public static function PathItem::propertyDefinitions in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/path/src/Plugin/Field/FieldType/PathItem.php \Drupal\path\Plugin\Field\FieldType\PathItem::propertyDefinitions()
  2. 10 core/modules/path/src/Plugin/Field/FieldType/PathItem.php \Drupal\path\Plugin\Field\FieldType\PathItem::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

core/modules/path/src/Plugin/Field/FieldType/PathItem.php, line 29

Class

PathItem
Defines the 'path' entity field type.

Namespace

Drupal\path\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
  $properties['alias'] = DataDefinition::create('string')
    ->setLabel(t('Path alias'));
  $properties['pid'] = DataDefinition::create('integer')
    ->setLabel(t('Path id'));
  $properties['langcode'] = DataDefinition::create('string')
    ->setLabel(t('Language Code'));
  return $properties;
}