1.20.x plugin.inc views_plugin::theme_functions()

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

File

modules/views/includes/plugin.inc, line 64

Class

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

Code

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