function social_comment_field_info_alter in Open Social 8
Same name and namespace in other branches
- 8.9 modules/social_features/social_comment/social_comment.module \social_comment_field_info_alter()
- 8.2 modules/social_features/social_comment/social_comment.module \social_comment_field_info_alter()
- 8.3 modules/social_features/social_comment/social_comment.module \social_comment_field_info_alter()
- 8.4 modules/social_features/social_comment/social_comment.module \social_comment_field_info_alter()
- 8.5 modules/social_features/social_comment/social_comment.module \social_comment_field_info_alter()
- 8.6 modules/social_features/social_comment/social_comment.module \social_comment_field_info_alter()
- 8.7 modules/social_features/social_comment/social_comment.module \social_comment_field_info_alter()
- 8.8 modules/social_features/social_comment/social_comment.module \social_comment_field_info_alter()
- 10.3.x modules/social_features/social_comment/social_comment.module \social_comment_field_info_alter()
- 10.0.x modules/social_features/social_comment/social_comment.module \social_comment_field_info_alter()
- 10.1.x modules/social_features/social_comment/social_comment.module \social_comment_field_info_alter()
- 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 258 - The Social comment module.
Code
function social_comment_field_info_alter(&$info) {
if (isset($info['comment'])) {
$info['comment']['list_class'] = '\\Drupal\\social_comment\\SocialCommentFieldItemList';
}
}