function views_theme_functions

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

5 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
Overrides \Drupal\views\Plugin\views\pager\PagerPluginBase::render().
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.
StylePluginBase::renderGroupingSets in drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php
Render the grouping sets.
views_exposed_form in drupal/core/modules/views/views.module
Form builder for the exposed widgets form.

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);
}