You are here

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

Returns whether the operation needs the full selected views rows to be passed to execute() as a part of $context.

1 method overrides ViewsBulkOperationsBaseOperation::needsRows()
ViewsBulkOperationsAction::needsRows in plugins/operation_types/action.class.php
Returns whether the operation needs the full selected views rows to be passed to execute() as a part of $context.

File

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

Class

ViewsBulkOperationsBaseOperation
@file Defines the base class for operations.

Code

public function needsRows() {
  return FALSE;
}