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