You are here

function views_export_xls_plugin_style_xls::option_definition 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::option_definition()

Set options fields and default values.

Return value

An array of options information.

Overrides views_plugin_style::option_definition

File

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

Class

views_export_xls_plugin_style_xls
Generalized style plugin for export plugins.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['filename'] = array(
    'default' => 'view-%view.xls',
    'translatable' => FALSE,
  );
  return $options;
}