You are here

public function views_plugin::theme_functions in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 includes/plugins.inc \views_plugin::theme_functions()
  2. 6.2 includes/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 535
Built in plugins for Views output handling.

Class

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

Code

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