function views_theme_functions

Build a list of theme function names for use most everywhere.

5 calls to views_theme_functions()

File

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

Code

function views_theme_functions($hook, ViewExecutable $view, $display = NULL) {
  Drupal::moduleHandler()
    ->loadInclude('views', 'inc', 'views.theme');
  return _views_theme_functions($hook, $view, $display);
}