You are here

function social_group_entity_base_field_info_alter in Open Social 8.9

Same name and namespace in other branches
  1. 8 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  2. 8.2 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  3. 8.3 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  4. 8.4 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  5. 8.5 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  6. 8.6 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  7. 8.7 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  8. 8.8 modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  9. 10.3.x modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  10. 10.0.x modules/social_features/social_group/social_group.module \social_group_entity_base_field_info_alter()
  11. 10.1.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 1619
The Social group module.

Code

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

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