Compare commits

...

No commits in common. "2.x" and "1.0.0" have entirely different histories.
2.x ... 1.0.0

2 changed files with 13 additions and 17 deletions

View file

@ -1,8 +0,0 @@
{
"name": "drupal/simple_message",
"description": "Displays a simple message.",
"type": "drupal-module",
"require": {
"php": "^7.4"
}
}

View file

@ -1,10 +1,7 @@
<?php
declare(strict_types=1);
namespace Drupal\simple_message;
use Drupal\Core\Config\Config;
use Drupal\Core\Routing\AdminContext;
use Drupal\Core\Messenger\MessengerInterface;
use Drupal\Core\Config\ConfigFactoryInterface;
@ -17,28 +14,35 @@ final class DisplaySimpleMessage implements EventSubscriberInterface {
use StringTranslationTrait;
private MessengerInterface $messenger;
private AdminContext $adminContext;
private Config $config;
private $messenger;
private $adminContext;
private $config;
public function __construct(
MessengerInterface $messenger,
AdminContext $adminContext,
ConfigFactoryInterface $configFactory
) {
) {
$this->messenger = $messenger;
$this->adminContext = $adminContext;
$this->config = $configFactory->get('simple_message.config');
}
public function displayMessage(GetResponseEvent $event): void {
public function displayMessage(GetResponseEvent $event) {
if ($this->adminContext->isAdminRoute()) {
return;
}
if ($message = $this->config->get('message')) {
$this->messenger->addMessage($this->t($message));
$this->messenger->addMessage($message);
}
return;
$this->messenger->addMessage($this->t('This site is running on a <a href="@vagrant">Vagrant</a> server, deployed with <a href="@ansible">Ansible</a> and <a href="@ansistrano">Ansistrano</a>.', [
'@ansible' => 'https://ansible.com',
'@ansistrano' => 'https://ansistrano.com',
'@vagrant' => 'https://vagrantup.com',
]));
}
/**