public static function SimpleIframeFieldType::propertyDefinitions in Simple iframe 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/ SimpleIframeFieldType.php, line 39
Class
- SimpleIframeFieldType
- Plugin implementation of the 'simple_iframe_field_type' field type.
Namespace
Drupal\simple_iframe\Plugin\Field\FieldTypeCode
public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
// Prevent early t() calls by using the TranslatableMarkup.
$properties['url'] = DataDefinition::create('string')
->setLabel(new TranslatableMarkup('URL'));
$properties['width'] = DataDefinition::create('string')
->setLabel(new TranslatableMarkup('Width'));
$properties['height'] = DataDefinition::create('string')
->setLabel(new TranslatableMarkup('Height'));
return $properties;
}