You are here

function views_plugin_style_xml::theme_functions in Views Datasource 6

Same name and namespace in other branches
  1. 7 views/plugins/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

1 call to views_plugin_style_xml::theme_functions()
views_plugin_style_xml::render in ./views_plugin_style_xml.inc
Implementation of view_style_plugin::render()

File

./views_plugin_style_xml.inc, line 155
Implementation of views_plugin_style for views_xml

Class

views_plugin_style_xml
Implementation of views_plugin_style

Code

function theme_functions() {
  $options = $this->options;
  if ($options['schema'] == 'raw') {
    $hook = 'views_views_xml_style_raw';
  }
  if ($options['schema'] == 'opml') {
    $hook = 'views_views_xml_style_opml';
  }
  if ($options['schema'] == 'atom') {
    $hook = 'views_views_xml_style_atom';
  }
  return views_theme_functions($hook, $this->view, $this->display);
}