function views_plugin_style_xml::theme_functions in Views Datasource 7
Same name and namespace in other branches
- 6 views_plugin_style_xml.inc \views_plugin_style_xml::theme_functions()
Implementation of 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_xml::theme_functions()
- views_plugin_style_xml::render in views/
plugins/ views_plugin_style_xml.inc - Implementation of view_style_plugin::render()
File
- views/
plugins/ views_plugin_style_xml.inc, line 169 - Implements views_plugin_style for views_xml
Class
- views_plugin_style_xml
- Implements views_plugin_style
Code
function theme_functions() {
$options = $this->options;
$hook = 'views_views_xml_style_' . $options['schema'];
return views_theme_functions($hook, $this->view, $this->display);
}