function views_plugin::additional_theme_functions
Same name in other branches
- 7.x-3.x includes/plugins.inc \views_plugin::additional_theme_functions()
Provide a list of additional theme functions for the theme information 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 513
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;
}