You are here

public static function YoastSeoItem::propertyDefinitions in Real-time SEO for Drupal 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/Field/FieldType/YoastSeoItem.php \Drupal\yoast_seo\Plugin\Field\FieldType\YoastSeoItem::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/YoastSeoItem.php, line 63

Class

YoastSeoItem
Plugin implementation of the 'yoast_seo' field type.

Namespace

Drupal\yoast_seo\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
  $properties['status'] = DataDefinition::create('string')
    ->setLabel(t('Status'));
  $properties['focus_keyword'] = DataDefinition::create('string')
    ->setLabel(t('Focus Keyword'));
  $properties['title'] = DataDefinition::create('string')
    ->setLabel(t('Edited title'));
  $properties['description'] = DataDefinition::create('string')
    ->setLabel(t('Edited description'));
  return $properties;
}