Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / views_post_execute.twig
1 /**
2  * Implements hook_views_post_execute().
3  */
4 function {{ machine_name }}_views_post_execute(ViewExecutable $view) {
5   // If there are more than 100 results, show a message that encourages the user
6   // to change the filter settings.
7   // (This action could be performed later in the execution process, but not
8   // earlier.)
9   if ($view->total_rows > 100) {
10     drupal_set_message(t('You have more than 100 hits. Use the filter settings to narrow down your list.'));
11   }
12 }