You are here

function social_user_entity_base_field_info_alter in Open Social 8.4

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

Implements hook_entity_base_field_info_alter().

File

modules/social_features/social_user/social_user.module, line 265
The social user module alterations.

Code

function social_user_entity_base_field_info_alter(&$fields, EntityTypeInterface $entity_type) {

  // Add the custom Social username constraint.
  if ($entity_type
    ->id() == 'user' && isset($fields['name'])) {
    $fields['name']
      ->addConstraint('SocialUserName');
  }
}