You are here

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

Same name and namespace in other branches
  1. 6.3 includes/plugins.inc \views_plugin::additional_theme_functions()
  2. 6.2 includes/plugins.inc \views_plugin::additional_theme_functions()

Provide a list of additional theme functions for the theme info page.

1 call to views_plugin::additional_theme_functions()
views_plugin_display::options_form in plugins/views_plugin_display.inc
Provide the default form for setting options.

File

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

Class

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

Code

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