views_preprocess_comment

views_preprocess_comment(&$variables)

A theme preprocess function to automatically allow view-based node templates if called from a view.

File

core/modules/views/views.module, line 265
Primarily Drupal hooks and global API functions to manipulate views.

Code

function views_preprocess_comment(&$variables) {
  // The view data is added to the comment in
  // \Drupal\views\Plugin\views\row\EntityRow::preRender().
  if (!empty($variables['comment']->view) && $variables['comment']->view->storage->id()) {
    $variables['view'] = $variables['comment']->view;
  }
}
doc_Drupal
2016-10-29 09:55:38
Comments
Leave a Comment

Please login to continue.