label' pairs, i.e. 'Lifetime in days': 1 => 1 day, 7 => 1 week, 31 => 1 month."), * category = @Translation("Number"), * default_widget = "options_select", * default_formatter = "list_default", * ) */ class ListIntegerItem extends ListItemBase { /** * {@inheritdoc} */ public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) { $properties['value'] = DataDefinition::create('integer') ->setLabel(t('Integer value')) ->setRequired(TRUE); return $properties; } /** * {@inheritdoc} */ public static function schema(FieldStorageDefinitionInterface $field_definition) { return [ 'columns' => [ 'value' => [ 'type' => 'int', ], ], 'indexes' => [ 'value' => ['value'], ], ]; } /** * {@inheritdoc} */ protected function allowedValuesDescription() { $description = '

' . t('The possible values this field can contain. Enter one value per line, in the format key|label.'); $description .= '
' . t('The key is the stored value, and must be numeric. The label will be used in displayed values and edit forms.'); $description .= '
' . t('The label is optional: if a line contains a single number, it will be used as key and label.'); $description .= '
' . t('Lists of labels are also accepted (one label per line), only if the field does not hold any values yet. Numeric keys will be automatically generated from the positions in the list.'); $description .= '

'; $description .= '

' . t('Allowed HTML tags in labels: @tags', ['@tags' => $this->displayAllowedTags()]) . '

'; return $description; } /** * {@inheritdoc} */ protected static function validateAllowedValue($option) { if (!preg_match('/^-?\d+$/', $option)) { return t('Allowed values list: keys must be integers.'); } } /** * {@inheritdoc} */ protected static function castAllowedValue($value) { return (int) $value; } }