function 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

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