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

Provide a list of additional theme functions for the theme information page

File

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

Class

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

Code

function additional_theme_functions() {
  $funcs = array();
  if (!empty($this->definition['additional themes'])) {
    foreach ($this->definition['additional themes'] as $theme => $type) {
      $funcs[] = views_theme_functions($theme, $this->view, $this->display);
    }
  }
  return $funcs;
}