function sheetnode_feed_plugin_style::options_form in Sheetnode 7.2
Same name and namespace in other branches
- 6 views/sheetnode_plugin_style.inc \sheetnode_feed_plugin_style::options_form()
- 7 views/sheetnode_plugin_style.inc \sheetnode_feed_plugin_style::options_form()
Set sheetnod feed option form.
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 - Set sheetnod feed option form.
1 method overrides sheetnode_feed_plugin_style::options_form()
- sheetnode_phpexcel_plugin_style::options_form in modules/
sheetnode_phpexcel/ sheetnode_phpexcel_plugin_style.inc - Set sheetnod feed option form.
File
- views/
sheetnode_plugin_style.inc, line 617
Class
- sheetnode_feed_plugin_style
- Extension for 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.'),
);
}