page_layouts-1.0.1/src/Form/LayoutSettingsForm.php
src/Form/LayoutSettingsForm.php
<?php
declare(strict_types=1);
namespace Drupal\page_layouts\Form;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
/**
* Configuration form for a layout entity type.
*/
final class LayoutSettingsForm extends FormBase {
/**
* {@inheritdoc}
*/
public function getFormId(): string {
return 'page_layouts_layout_settings';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state): array {
$form['settings'] = [
'#markup' => $this->t('Settings form for a layout 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.'));
}
}
