You are here

public static function IpAddressField::propertyDefinitions in IP address fields 8

Same name and namespace in other branches
  1. 2.0.x src/Plugin/Field/FieldType/IpAddressField.php \Drupal\field_ipaddress\Plugin\Field\FieldType\IpAddressField::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

src/Plugin/Field/FieldType/IpAddressField.php, line 37

Class

IpAddressField
Plugin implementation of the 'ipaddress' field type.

Namespace

Drupal\field_ipaddress\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
  $properties['ip_start'] = DataDefinition::create('any')
    ->setLabel(t('IP value minimum'))
    ->setDescription(t('The IP minimum value, as a binary number.'));
  $properties['ip_end'] = DataDefinition::create('any')
    ->setLabel(t('IP value maximum'))
    ->setDescription(t('The IP maximum value, as a binary number.'));
  return $properties;
}