Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / views_pre_render.twig
1 /**
2  * Implements hook_views_pre_render().
3  */
4 function {{ machine_name }}_views_pre_render(ViewExecutable $view) {
5   // Scramble the order of the rows shown on this result page.
6   // Note that this could be done earlier, but not later in the view execution
7   // process.
8   shuffle($view->result);
9 }