You are here

function views_data_export_plugin_style_export::theme_functions in Views data export 7.3

Same name and namespace in other branches
  1. 6.3 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::theme_functions()
  2. 6 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::theme_functions()
  3. 6.2 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::theme_functions()
  4. 7.4 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::theme_functions()
  5. 7 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::theme_functions()

Provide a full list of possible theme templates used by this style.

Overrides views_plugin::theme_functions

4 calls to views_data_export_plugin_style_export::theme_functions()
views_data_export_plugin_style_export::render in plugins/views_data_export_plugin_style_export.inc
Render the display in this style.
views_data_export_plugin_style_export::render_body in plugins/views_data_export_plugin_style_export.inc
views_data_export_plugin_style_export::render_footer in plugins/views_data_export_plugin_style_export.inc
views_data_export_plugin_style_export::render_header in plugins/views_data_export_plugin_style_export.inc

File

plugins/views_data_export_plugin_style_export.inc, line 287
Plugin include file for export style plugin.

Class

views_data_export_plugin_style_export
Generalized style plugin for export plugins.

Code

function theme_functions($hook = NULL) {
  if (is_null($hook)) {
    $hook = $this->definition['theme'];
  }
  return views_theme_functions($hook, $this->view, $this->display);
}