You are here

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

Returns whether the provided account has access to execute the operation.

Parameters

$account:

2 methods override ViewsBulkOperationsBaseOperation::access()
ViewsBulkOperationsAction::access in plugins/operation_types/action.class.php
Returns whether the provided account has access to execute the operation.
ViewsBulkOperationsRulesComponent::access in plugins/operation_types/rules_component.class.php
Returns whether the provided account has access to execute the operation.

File

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

Class

ViewsBulkOperationsBaseOperation
@file Defines the base class for operations.

Code

public function access($account) {
  return TRUE;
}