comment_empty_title_test.module

Same filename and directory in other branches
  1. 9 core/modules/comment/tests/modules/comment_empty_title_test/comment_empty_title_test.module
  2. 10 core/modules/comment/tests/modules/comment_empty_title_test/comment_empty_title_test.module
  3. 11.x core/modules/comment/tests/modules/comment_empty_title_test/comment_empty_title_test.module

Dummy module emptying comment titles to test for appropriate and accessible markup in edge case scenarios where comments have empty titles.

File

core/modules/comment/tests/modules/comment_empty_title_test/comment_empty_title_test.module

View source
<?php


/**
 * @file
 * Dummy module emptying comment titles to test for appropriate and accessible
 * markup in edge case scenarios where comments have empty titles.
 */

/**
 * Implements hook_preprocess_comment().
 */
function comment_empty_titles_test_preprocess_comment(&$variables) {
    $variables['title'] = '';
}

Functions

Title Deprecated Summary
comment_empty_titles_test_preprocess_comment Implements hook_preprocess_comment().

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.