function views_plugin_style_xhtml::theme_functions in Views Datasource 7
Same name and namespace in other branches
- 6 views_plugin_style_xhtml.inc \views_plugin_style_xhtml::theme_functions()
Implements views_style_plugin::theme_functions(). Returns an array of theme functions to use. for the current style plugin
Return value
array
Overrides views_plugin::theme_functions
1 call to views_plugin_style_xhtml::theme_functions()
- views_plugin_style_xhtml::render in views/
plugins/ views_plugin_style_xhtml.inc - Implements view_style_plugin::render()
File
- views/
plugins/ views_plugin_style_xhtml.inc, line 123 - Implements views_plugin_style for views_xhtml
Class
- views_plugin_style_xhtml
- Implements views_plugin_style
Code
function theme_functions() {
$options = $this->options;
$hook = 'views_views_xhtml_style_' . $options['format'];
return views_theme_functions($hook, $this->view, $this->display);
}