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