You are here

function social_group_entity_base_field_info_alter in Open Social 10.1.x

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  2. 8 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  3. 8.2 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  4. 8.3 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  5. 8.4 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  6. 8.5 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  7. 8.6 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  8. 8.7 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  9. 8.8 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  10. 10.3.x modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  11. 10.0.x modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  12. 10.2.x modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()

Implements hook_entity_base_field_info_alter().

File

modules/social_features/social_group/social_group.module, line 1886
The Social group module.

Code

function social_group_entity_base_field_info_alter(&$fields, EntityTypeInterface $entity_type) {
  if ($entity_type
    ->id() === 'node' && isset($fields['groups'])) {

    /** @var \Drupal\Core\Field\FieldDefinitionInterface[] $fields */
    $fields['groups']
      ->setLabel(t('Group'))
      ->setDescription('')
      ->setSetting('handler', 'social')
      ->setDisplayOptions('form', [
      'type' => 'options_select',
      'settings' => [],
      'weight' => 16,
    ])
      ->setDisplayConfigurable('form', TRUE);
  }
}