You are here

public static function VotingApiField::propertyDefinitions in Votingapi Widgets 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

File

src/Plugin/Field/FieldType/VotingApiField.php, line 59

Class

VotingApiField
Plugin implementation of the 'voting_api_field' field type.

Namespace

Drupal\votingapi_widgets\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {

  // Prevent early t() calls by using the TranslatableMarkup.
  $properties['status'] = DataDefinition::create('integer')
    ->setLabel(t('Vote status'))
    ->setRequired(TRUE);
  $properties['value'] = DataDefinition::create('any')
    ->setLabel(t('Vote initial'))
    ->setRequired(FALSE);
  return $properties;
}