You are here

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

Returns the value of an admin option.

5 calls to ViewsBulkOperationsBaseOperation::getAdminOption()
ViewsBulkOperationsAction::adminOptionsForm in plugins/operation_types/action.class.php
Returns the admin options form for the operation.
ViewsBulkOperationsAction::execute in plugins/operation_types/action.class.php
Executes the selected operation on the provided data.
ViewsBulkOperationsAction::form in plugins/operation_types/action.class.php
Returns the configuration form for the operation. Only called if the operation is declared as configurable.
ViewsBulkOperationsBaseOperation::adminOptionsForm in plugins/operation_types/base.class.php
Returns the admin options form for the operation.
ViewsBulkOperationsBaseOperation::label in plugins/operation_types/base.class.php
Returns the human-readable name of the operation, meant to be shown to the user.

File

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

Class

ViewsBulkOperationsBaseOperation
@file Defines the base class for operations.

Code

public function getAdminOption($key, $default = NULL) {
  return isset($this->adminOptions[$key]) ? $this->adminOptions[$key] : $default;
}