You are here

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

Options form mini callback.

Parameters

$form: Form array to add additional fields to.

$form_state: State of the form.

Return value

None.

Overrides views_plugin_style::options_form

File

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

Class

views_export_xls_plugin_style_xls
Generalized style plugin for export plugins.

Code

function options_form(&$form, &$form_state) {
  $form['filename'] = array(
    '#type' => 'textfield',
    '#title' => t('XLS filename'),
    '#default_value' => $this->options['filename'],
    '#description' => t('The filename that will be suggested to the browser for downloading purposes. %view will be replaced with the view name.'),
  );
}