function comment_test_entity_info_alter

Implements hook_entity_info_alter().

File

drupal/core/modules/comment/tests/modules/comment_test/comment_test.module, line 12
Dummy module implementing comment related hooks to test API interaction with the Comment module.

Code

function comment_test_entity_info_alter(&$info) {
  if (language_multilingual()) {

    // Enable language handling for comment fields.
    $info['comment']['translation']['comment_test'] = TRUE;
  }
}