You are here

function sheetnode_feed_plugin_style::options_form in Sheetnode 7

Same name and namespace in other branches
  1. 6 views/sheetnode_plugin_style.inc \sheetnode_feed_plugin_style::options_form()
  2. 7.2 views/sheetnode_plugin_style.inc \sheetnode_feed_plugin_style::options_form()

Provide a form to edit options for this plugin.

Overrides sheetnode_plugin_style::options_form

1 call to sheetnode_feed_plugin_style::options_form()
sheetnode_phpexcel_plugin_style::options_form in modules/sheetnode_phpexcel/sheetnode_phpexcel_plugin_style.inc
Provide a form to edit options for this plugin.
1 method overrides sheetnode_feed_plugin_style::options_form()
sheetnode_phpexcel_plugin_style::options_form in modules/sheetnode_phpexcel/sheetnode_phpexcel_plugin_style.inc
Provide a form to edit options for this plugin.

File

views/sheetnode_plugin_style.inc, line 544

Class

sheetnode_feed_plugin_style

Code

function options_form(&$form, &$form_values) {
  parent::options_form($form, $form_values);
  $form['inherit'] = array(
    '#type' => 'checkbox',
    '#title' => t('Inherit spreadsheet settings'),
    '#default_value' => $this->options['inherit'],
    '#description' => t('If this feed is attached to a display that has a Spreadsheet style,
                           this option lets you inherit the settings of that style, including the spreadsheet formatting.
                           The settings below are then ignored.'),
  );
}