activity_stream-1.0.x-dev/src/Form/ActivityStreamSettingsForm.php
src/Form/ActivityStreamSettingsForm.php
<?php declare(strict_types = 1);
namespace Drupal\activity_stream\Form;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
/**
* Configure Activity Stream settings for this site.
*/
final class ActivityStreamSettingsForm extends ConfigFormBase {
/**
* {@inheritdoc}
*/
public function getFormId(): string {
return 'activity_stream_activity_stream_settings';
}
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames(): array {
return ['activity_stream.settings'];
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state): array {
$form['example'] = [
'#type' => 'textfield',
'#title' => $this->t('Example'),
'#default_value' => $this->config('activity_stream.settings')->get('example'),
];
return parent::buildForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function validateForm(array &$form, FormStateInterface $form_state): void {
// @todo Validate the form here.
// Example:
// @code
// if ($form_state->getValue('example') === 'wrong') {
// $form_state->setErrorByName(
// 'message',
// $this->t('The value is not correct.'),
// );
// }
// @endcode
parent::validateForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state): void {
$this->config('activity_stream.settings')
->set('example', $form_state->getValue('example'))
->save();
parent::submitForm($form, $form_state);
}
}
