function views_theme_suggestions_comment_alter in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views/views.module \views_theme_suggestions_comment_alter()
Implements hook_theme_suggestions_HOOK_alter().
File
- core/
modules/ views/ views.module, line 279 - Primarily Drupal hooks and global API functions to manipulate views.
Code
function views_theme_suggestions_comment_alter(array &$suggestions, array $variables) {
$comment = $variables['elements']['#comment'];
if (!empty($comment->view) && $comment->view->storage
->id()) {
$suggestions[] = 'comment__view__' . $comment->view->storage
->id();
if (!empty($comment->view->current_display)) {
$suggestions[] = 'comment__view__' . $comment->view->storage
->id() . '__' . $comment->view->current_display;
}
}
}