notification_popin-1.2.2/src/Form/NotificationSettingsForm.php
src/Form/NotificationSettingsForm.php
<?php declare(strict_types = 1);
namespace Drupal\notification_popin\Form;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
/**
* Configuration form for a notification entity type.
*/
final class NotificationSettingsForm extends FormBase {
/**
* {@inheritdoc}
*/
public function getFormId(): string {
return 'notification_settings';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state): array {
$form['settings'] = [
'#markup' => $this->t('Settings form for a notification entity type.'),
];
$form['actions'] = [
'#type' => 'actions',
'submit' => [
'#type' => 'submit',
'#value' => $this->t('Save'),
],
];
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state): void {
$this->messenger()->addStatus($this->t('The configuration has been updated.'));
}
}
