You are here

public static function ViewsBulkOperationsBatch::message in Views Bulk Operations (VBO) 8.2

Same name and namespace in other branches
  1. 8 src/ViewsBulkOperationsBatch.php \Drupal\views_bulk_operations\ViewsBulkOperationsBatch::message()

Set message function wrapper.

See also

\drupal_set_message()

1 call to ViewsBulkOperationsBatch::message()
ViewsBulkOperationsBatch::finished in src/ViewsBulkOperationsBatch.php
Batch finished callback.
1 method overrides ViewsBulkOperationsBatch::message()
TestViewsBulkOperationsBatch::message in tests/src/Unit/TestViewsBulkOperationsBatch.php
Override message method.

File

src/ViewsBulkOperationsBatch.php, line 26

Class

ViewsBulkOperationsBatch
Defines module Batch API methods.

Namespace

Drupal\views_bulk_operations

Code

public static function message($message = NULL, $type = 'status', $repeat = TRUE) {
  drupal_set_message($message, $type, $repeat);
}