function views_theme_functions

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

7 calls to views_theme_functions()
DisplayPluginBase::renderMoreLink in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Render the 'more' link
Full::render in drupal/core/modules/views/lib/Drupal/views/Plugin/views/pager/Full.php
Render the pager.
Mini::render in drupal/core/modules/views/lib/Drupal/views/Plugin/views/pager/Mini.php
Render the pager.
PluginBase::additionalThemeFunctions in drupal/core/modules/views/lib/Drupal/views/Plugin/views/PluginBase.php
Provide a list of additional theme functions for the theme information page
PluginBase::themeFunctions in drupal/core/modules/views/lib/Drupal/views/Plugin/views/PluginBase.php
Provide a full list of possible theme templates used by this style.

... See full list

File

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

Code

function views_theme_functions($hook, ViewExecutable $view, $display = NULL) {
  module_load_include('inc', 'views', 'theme/theme');
  return _views_theme_functions($hook, $view, $display);
}