function views_theme_functions

3.x views.module views_theme_functions($hook, $view, $display = NULL)
2.x views.module views_theme_functions($hook, $view, $display = NULL)

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

7 calls to views_theme_functions()
views_exposed_form in ./views.module
Form builder for the exposed widgets form.
views_plugin::additional_theme_functions in includes/plugins.inc
Provide a list of additional theme functions for the theme information page
views_plugin::theme_functions in includes/plugins.inc
Provide a full list of possible theme templates used by this style.
views_plugin_display::render_more_link in plugins/views_plugin_display.inc
Render the 'more' link
views_plugin_pager_full::render in plugins/views_plugin_pager_full.inc
Render the pager.

... See full list

File

./views.module, line 2099
Primarily Drupal hooks and global API functions to manipulate views.

Code

function views_theme_functions($hook, $view, $display = NULL) {
  require_once DRUPAL_ROOT . '/' . drupal_get_path('module', 'views') . "/theme/theme.inc";
  return _views_theme_functions($hook, $view, $display);
}