You are here

function views_export_xls_plugin_style_xls::init in Views Excel Export 7

Same name and namespace in other branches
  1. 6 views_export_xls_plugin_style_xls.inc \views_export_xls_plugin_style_xls::init()

Initialize plugin.

Set feed image for shared rendering later.

Overrides views_plugin_style::init

File

views/views_export_xls_plugin_style_xls.inc, line 19
Plugin include file for export style plugin.

Class

views_export_xls_plugin_style_xls
Generalized style plugin for export plugins.

Code

function init(&$view, &$display, $options = NULL) {
  parent::init($view, $display, $options = NULL);
  $this->feed_image = drupal_get_path('module', 'views_export_xls') . '/images/xls-icon.jpg';
}