You are here

function social_comment_field_info_alter in Open Social 8.8

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

Implements hook_field_info_alter().

Change the default list_class for fields of type 'comment'.

File

modules/social_features/social_comment/social_comment.module, line 353
The Social comment module.

Code

function social_comment_field_info_alter(&$info) {
  if (isset($info['comment'])) {
    $info['comment']['list_class'] = '\\Drupal\\social_comment\\SocialCommentFieldItemList';
  }
}