You are here

function views_theme_suggestions_container_alter in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/views/views.module \views_theme_suggestions_container_alter()

Implements hook_theme_suggestions_HOOK_alter().

File

core/modules/views/views.module, line 293
Primarily Drupal hooks and global API functions to manipulate views.

Code

function views_theme_suggestions_container_alter(array &$suggestions, array $variables) {
  if (!empty($variables['element']['#type']) && $variables['element']['#type'] == 'more_link' && !empty($variables['element']['#view']) && $variables['element']['#view'] instanceof ViewExecutable) {
    $suggestions = array_merge($suggestions, $variables['element']['#view']
      ->buildThemeFunctions('container__more_link'));
  }
}