function StylePluginBase::wizard_submit in Views (for Drupal 7) 8.3
Alter the options of a display before they are added to the view.
Parameters
array $form: An associative array containing the structure of the form.
array $form_state: An associative array containing the current state of the form.
Drupal\views\Plugin\views\wizard\WizardInterface $wizard: The current used wizard.
array $display_options: The options which will be used on the view. The style plugin should alter this to its own needs.
string $display_type: The display type, either block or page.
1 method overrides StylePluginBase::wizard_submit()
- Table::wizard_submit in lib/
Drupal/ views/ Plugin/ views/ style/ Table.php - Alter the options of a display before they are added to the view.
File
- lib/
Drupal/ views/ Plugin/ views/ style/ StylePluginBase.php, line 372 - Definition of Drupal\views\Plugin\views\style\StylePluginBase.
Class
- StylePluginBase
- Base class to define a style plugin handler.
Namespace
Drupal\views\Plugin\views\styleCode
function wizard_submit(&$form, &$form_state, WizardInterface $wizard, &$display_options, $display_type) {
}