function 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

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);
}