public function Logger::display in Simple XML sitemap 8.2
Same name and namespace in other branches
- 8.3 src/Logger.php \Drupal\simple_sitemap\Logger::display()
- 4.x src/Logger.php \Drupal\simple_sitemap\Logger::display()
Parameters
string $displayMessageType:
string $permission:
Return value
$this
File
- src/
Logger.php, line 86
Class
- Logger
- Class Logger @package Drupal\simple_sitemap
Namespace
Drupal\simple_sitemapCode
public function display($displayMessageType = self::DISPLAY_MESSAGE_TYPE_DEFAULT, $permission = '') {
if (empty($permission) || $this->currentUser
->hasPermission($permission)) {
drupal_set_message($this
->t($this->message, $this->substitutions), $displayMessageType);
}
return $this;
}