function views_plugin::theme_functions

3.x plugins.inc views_plugin::theme_functions()
2.x plugins.inc views_plugin::theme_functions()

Provide a full list of possible theme templates used by this style.

12 calls to views_plugin::theme_functions()
views_plugin_display::options_form in plugins/views_plugin_display.inc
Provide the default form for setting options.
views_plugin_display::render in plugins/views_plugin_display.inc
Render this display.
views_plugin_row::render in plugins/views_plugin_row.inc
Render a row object. This usually passes through to a theme template of some form, but not always.
views_plugin_row_aggregator_rss::render in modules/aggregator/views_plugin_row_aggregator_rss.inc
Render a row object. This usually passes through to a theme template of some form, but not always.
views_plugin_row_comment_rss::render in modules/comment/views_plugin_row_comment_rss.inc
Render a row object. This usually passes through to a theme template of some form, but not always.

... See full list

File

includes/plugins.inc, line 528
Built in plugins for Views output handling.

Class

views_plugin
Abstract base class to provide interface common to all plugins.

Code

function theme_functions() {
  return views_theme_functions($this->definition['theme'], $this->view, $this->display);
}