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
1 2 3 4 5 6 7 | 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; } } |
Please login to continue.