You are here

public static function Pbf::propertyDefinitions in Permissions by 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 EntityReferenceItem::propertyDefinitions

See also

\Drupal\Core\Field\BaseFieldDefinition

File

src/Plugin/Field/FieldType/Pbf.php, line 71

Class

Pbf
Plugin implementation of the 'pbf' field type.

Namespace

Drupal\pbf\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
  $properties = parent::propertyDefinitions($field_definition);

  // Add operations properties.
  foreach (self::$operations as $key => $value) {
    $properties[$key] = DataDefinition::create('boolean')
      ->setLabel(new TranslatableMarkup('@operation access', [
      '@operation' => $key,
    ]));
  }
  return $properties;
}