tour_page_bottom(array &$page_bottom)
Implements hook_page_bottom().
File
- core/modules/tour/tour.module, line 76
- Main functions of the module.
Code
function tour_page_bottom(array &$page_bottom) { if (!\Drupal::currentUser()->hasPermission('access tour')) { return; } // Load all of the items and match on route name. $route_match = \Drupal::routeMatch(); $route_name = $route_match->getRouteName(); $results = \Drupal::entityQuery('tour') ->condition('routes.*.route_name', $route_name) ->execute(); if (!empty($results) && $tours = Tour::loadMultiple(array_keys($results))) { foreach ($tours as $id => $tour) { // Match on params. if (!$tour->hasMatchingRoute($route_name, $route_match->getRawParameters()->all())) { unset($tours[$id]); } } if (!empty($tours)) { $page_bottom['tour'] = entity_view_multiple($tours, 'full'); } } }
Please login to continue.