You are here

function social_comment_entity_type_alter in Open Social 8.2

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

Implements hook_entity_type_alter().

File

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

Code

function social_comment_entity_type_alter(array &$entity_types) {

  /* @var $entity_types \Drupal\Core\Entity\EntityTypeInterface[] */
  $entity_types['comment']
    ->setViewBuilderClass('Drupal\\social_comment\\SocialCommentViewBuilder');
}