public static function OgGroupItem::propertyDefinitions in Organic groups 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/ OgGroupItem.php, line 39
Class
- OgGroupItem
- OG Group Data class to return TRUE always.
Namespace
Drupal\og\Plugin\Field\FieldTypeCode
public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
$definitions = [];
$definitions['value'] = DataDefinition::create('boolean')
->setLabel('Group item value')
->setReadOnly(TRUE)
->setComputed(TRUE)
->setClass('\\Drupal\\og\\OgGroupAlwaysTrue');
return $definitions;
}