You are here

public static function SkypeItem::generateSampleValue in Skype 8

Generates placeholder field values.

Useful when populating site with placeholder content during site building or profiling.

Parameters

\Drupal\Core\Field\FieldDefinitionInterface $field_definition: The field definition.

Return value

array An associative array of values.

Overrides FieldItemBase::generateSampleValue

File

src/Plugin/Field/FieldType/SkypeItem.php, line 61

Class

SkypeItem
Plugin implementation of the 'skype' field type.

Namespace

Drupal\skype\Plugin\Field\FieldType

Code

public static function generateSampleValue(FieldDefinitionInterface $field_definition) {
  $values['value'] = 'my.skype.id';
  return $values;
}