Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / views_ui_display_top_links_alter.twig
1 /**
2  * Implements hook_views_ui_display_top_links_alter().
3  */
4 function {{ machine_name }}_views_ui_display_top_links_alter(array &$links, ViewExecutable $view, $display_id) {
5   // Put the export link first in the list.
6   if (isset($links['export'])) {
7     $links = ['export' => $links['export']] + $links;
8   }
9 }