You are here

protected function ViewsBulkOperationsBulkForm::drupalSetMessage in Views Bulk Operations (VBO) 8

Wraps drupal_set_message().

File

src/Plugin/views/field/ViewsBulkOperationsBulkForm.php, line 743

Class

ViewsBulkOperationsBulkForm
Defines the Views Bulk Operations field plugin.

Namespace

Drupal\views_bulk_operations\Plugin\views\field

Code

protected function drupalSetMessage($message = NULL, $type = 'status', $repeat = FALSE) {
  drupal_set_message($message, $type, $repeat);
}