You are here

public function ViewsBulkOperationsBaseOperation::adminOptionsFormValidate in Views Bulk Operations (VBO) 7.3

Validates the admin options form.

Parameters

$form: The admin options form.

$form_state: An array containing the current state of the form. Note that this array is constructed by the VBO views field handler, so it's not a real form state, it contains only the 'values' key.

$error_element_base: The base to prepend to field names when using form_set_error(). Needed because the admin options form is embedded into a bigger form.

1 call to ViewsBulkOperationsBaseOperation::adminOptionsFormValidate()
ViewsBulkOperationsAction::adminOptionsFormValidate in plugins/operation_types/action.class.php
Validates the admin options form.
1 method overrides ViewsBulkOperationsBaseOperation::adminOptionsFormValidate()
ViewsBulkOperationsAction::adminOptionsFormValidate in plugins/operation_types/action.class.php
Validates the admin options form.

File

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

Class

ViewsBulkOperationsBaseOperation
@file Defines the base class for operations.

Code

public function adminOptionsFormValidate($form, &$form_state, $error_element_base) {

  // No need to do anything, but make the function have a body anyway
  // so that it's callable by overriding methods.
}