function views_plugin_style_rdf::theme_functions in Views Datasource 6
Same name and namespace in other branches
- 7 views/plugins/views_plugin_style_rdf.inc \views_plugin_style_rdf::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
1 call to views_plugin_style_rdf::theme_functions()
- views_plugin_style_rdf::render in ./
views_plugin_style_rdf.inc - Implementation of view_style_plugin::render()
File
- ./
views_plugin_style_rdf.inc, line 101 - Implementation of views_plugin_style for views_rdf
Class
- views_plugin_style_rdf
- Implementation of views_plugin_style
Code
function theme_functions() {
$options = $this->options;
if ($options['vocabulary'] == 'foaf') {
$hook = 'views_views_rdf_style_foaf';
}
if ($options['vocabulary'] == 'sioc') {
$hook = 'views_views_rdf_style_sioc';
}
if ($options['vocabulary'] == 'doap') {
$hook = 'views_views_rdf_style_doap';
}
return views_theme_functions($hook, $this->view, $this->display);
}