function PathItem::propertyDefinitions

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

Overrides FieldItemInterface::propertyDefinitions

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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.