You are here

protected function BulkForm::drupalSetMessage in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Plugin/views/field/BulkForm.php \Drupal\system\Plugin\views\field\BulkForm::drupalSetMessage()

Wraps drupal_set_message().

1 call to BulkForm::drupalSetMessage()
BulkForm::viewsFormSubmit in core/modules/system/src/Plugin/views/field/BulkForm.php
Submit handler for the bulk form.

File

core/modules/system/src/Plugin/views/field/BulkForm.php, line 437
Contains \Drupal\system\Plugin\views\field\BulkForm.

Class

BulkForm
Defines a actions-based bulk operation form element.

Namespace

Drupal\system\Plugin\views\field

Code

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