public static function CountryStateCityType::propertyDefinitions in Country, State and City Fields 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/ CountryStateCityType.php, line 41
Class
- CountryStateCityType
- Plugin implementation of the 'country_state_city_type' field type.
Namespace
Drupal\country_state_city\Plugin\Field\FieldTypeCode
public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
$properties['country'] = DataDefinition::create('string')
->setLabel(new TranslatableMarkup('Country'))
->setRequired(FALSE);
$properties['state'] = DataDefinition::create('string')
->setLabel(new TranslatableMarkup('State'))
->setRequired(FALSE);
$properties['city'] = DataDefinition::create('string')
->setLabel(new TranslatableMarkup('City'))
->setRequired(FALSE);
$properties['locate'] = DataDefinition::create('string')
->setLabel(new TranslatableMarkup('Locate'))
->setRequired(FALSE);
return $properties;
}