Information about options for all kinds of purposes will be held here. @code 'option_name' => array(
),
array Returns the options of this handler/plugin.
Overrides DisplayPluginBase::defineOptions
protected function defineOptions() {
$options = parent::defineOptions();
$options['displays'] = array(
'default' => array(),
);
$options['attachment_position'] = array(
'default' => 'before',
);
$options['inherit_arguments'] = array(
'default' => TRUE,
'bool' => TRUE,
);
$options['inherit_exposed_filters'] = array(
'default' => FALSE,
'bool' => TRUE,
);
$options['inherit_pager'] = array(
'default' => FALSE,
'bool' => TRUE,
);
$options['render_pager'] = array(
'default' => FALSE,
'bool' => TRUE,
);
return $options;
}