Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / views_preview_info_alter.twig
1 /**
2  * Implements hook_views_preview_info_alter().
3  */
4 function {{ machine_name }}_views_preview_info_alter(array &$rows, ViewExecutable $view) {
5   // Adds information about the tables being queried by the view to the query
6   // part of the info box.
7   $rows['query'][] = [
8     t('<strong>Table queue</strong>'),
9     count($view->query->table_queue) . ': (' . implode(', ', array_keys($view->query->table_queue)) . ')',
10   ];
11 }