public static function ViewsBulkOperationsBatch::message in Views Bulk Operations (VBO) 8
Same name and namespace in other branches
- 8.2 src/ViewsBulkOperationsBatch.php \Drupal\views_bulk_operations\ViewsBulkOperationsBatch::message()
Set message function wrapper.
See also
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_operationsCode
public static function message($message = NULL, $type = 'status', $repeat = TRUE) {
drupal_set_message($message, $type, $repeat);
}