You are here

function views_theme_functions in Views (for Drupal 7) 8.3

Same name and namespace in other branches
  1. 6.3 views.module \views_theme_functions()
  2. 6.2 views.module \views_theme_functions()
  3. 7.3 views.module \views_theme_functions()

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

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

... See full list

File

./views.module, line 2042
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);
}