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 StylePluginBase::defineOptions
protected function defineOptions() {
$options = parent::defineOptions();
$options['columns'] = array(
'default' => array(),
);
$options['default'] = array(
'default' => '',
);
$options['info'] = array(
'default' => array(),
);
$options['override'] = array(
'default' => TRUE,
'bool' => TRUE,
);
$options['sticky'] = array(
'default' => FALSE,
'bool' => TRUE,
);
$options['order'] = array(
'default' => 'asc',
);
$options['summary'] = array(
'default' => '',
'translatable' => TRUE,
);
$options['empty_table'] = array(
'default' => FALSE,
'bool' => TRUE,
);
return $options;
}