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
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d8/hook/views_post_execute.twig b/vendor/chi-teck/drupal-code-generator/templates/d8/hook/views_post_execute.twig
new file mode 100644 (file)
index 0000000..2b61267
--- /dev/null
@@ -0,0 +1,12 @@
+/**
+ * Implements hook_views_post_execute().
+ */
+function {{ machine_name }}_views_post_execute(ViewExecutable $view) {
+  // If there are more than 100 results, show a message that encourages the user
+  // to change the filter settings.
+  // (This action could be performed later in the execution process, but not
+  // earlier.)
+  if ($view->total_rows > 100) {
+    drupal_set_message(t('You have more than 100 hits. Use the filter settings to narrow down your list.'));
+  }
+}