You are here

abstract function ViewsBulkOperationsBaseOperation::formSubmit in Views Bulk Operations (VBO) 7.3

Handles the submitted configuration form. This is where the operation can transform and store the submitted data. Only called if the operation is declared as configurable.

Parameters

$form: The views form.

$form_state: An array containing the current state of the form.

2 methods override ViewsBulkOperationsBaseOperation::formSubmit()
ViewsBulkOperationsAction::formSubmit in plugins/operation_types/action.class.php
Handles the submitted configuration form. This is where the operation can transform and store the submitted data. Only called if the operation is declared as configurable.
ViewsBulkOperationsRulesComponent::formSubmit in plugins/operation_types/rules_component.class.php
Stores the rules element added to the form state in form(), so that it can be used in execute(). Only called if the operation is declared as configurable.

File

plugins/operation_types/base.class.php, line 164
Defines the base class for operations.

Class

ViewsBulkOperationsBaseOperation
@file Defines the base class for operations.

Code

abstract function formSubmit($form, &$form_state);