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