function views_theme_functions
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 info 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.
File
-
./
views.module, line 2372
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);
}