You are here

function views_data_export_plugin_style_export::theme_functions in Views data export 7.4

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 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::theme_functions()
  5. 7.3 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

File

plugins/views_data_export_plugin_style_export.inc, line 429
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);
}