You are here

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

Returns whether the operation is configurable. Used to determine whether the operation's form methods should be invoked.

1 call to ViewsBulkOperationsBaseOperation::configurable()
ViewsBulkOperationsRulesComponent::execute in plugins/operation_types/rules_component.class.php
Executes the selected operation on the provided data.

File

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

Class

ViewsBulkOperationsBaseOperation
@file Defines the base class for operations.

Code

public function configurable() {
  return !empty($this->operationInfo['configurable']);
}