easy_social-8.x-3.x-dev/src/Form/EmailSettingsForm.php
src/Form/EmailSettingsForm.php
<?php namespace Drupal\easy_social\Form; use Drupal\Core\Form\ConfigFormBase; use Drupal\Core\Config\ConfigFactory; use Drupal\Core\Plugin\Context\ContextInterface; use Drupal\Core\Extension\ModuleHandler; use Symfony\Component\DependencyInjection\ContainerInterface; use Drupal\Core\Form\FormStateInterface; /** * Configure user settings for this site. */ class EmailSettingsForm extends ConfigFormBase { /** * The module handler. * * @var \Drupal\Core\Extension\ModuleHandler */ protected $moduleHandler; /** * Config settings. * * @var string */ const SETTINGS = 'easy_social.email'; /** * Constructs a \Drupal\user\AccountSettingsForm object. * * @param \Drupal\Core\Config\ConfigFactory $config_factory * The factory for configuration objects. * @param \Drupal\Core\Extension\ModuleHandler $module_handler * The module handler. */ public function __construct(ConfigFactory $config_factory, ModuleHandler $module_handler) { parent::__construct($config_factory); $this->moduleHandler = $module_handler; } /** * Implements \Drupal\Core\ControllerInterface::create(). */ public static function create(ContainerInterface $container) { return new static( $container->get('config.factory'), $container->get('module_handler') ); } /** * Implements \Drupal\Core\Form\FormInterface::getFormID(). */ public function getFormID() { return 'easy_social_email'; } /** * {@inheritdoc} */ protected function getEditableConfigNames() { return [static::SETTINGS]; } /** * Implements \Drupal\Core\Form\FormInterface::buildForm(). */ public function buildForm(array $form, FormStateInterface $form_state, $type = 'new') { $config = $this->config(static::SETTINGS); $form['button_label'] = [ '#type' => 'textfield', '#title' => $this->t('Button label'), '#default_value' => $config->get('button_label'), '#description' => $this->t('The label shown on the page.'), ]; $form['button_title'] = [ '#type' => 'textfield', '#title' => $this->t('Button Title'), '#default_value' => $config->get('button_title'), '#description' => $this->t('The button title which provides a tooltip.'), ]; $form['subject'] = [ '#type' => 'textfield', '#title' => $this->t('Email Subject'), '#default_value' => $config->get('subject'), '#description' => $this->t('The subject of the email.'), ]; $form['body'] = [ '#type' => 'textfield', '#title' => $this->t('Email Body'), '#default_value' => $config->get('body'), '#description' => $this->t('This is how the email will begin. A link to the page will be provided on the next line.'), ]; return parent::buildForm($form, $form_state); } /** * @inheritdoc */ public function submitForm(array &$form, FormStateInterface $form_state) { parent::submitForm($form, $form_state); $config = $this->config(static::SETTINGS); $config->set('button_label', $form_state->getValue('button_label')) ->set('button_title', $form_state->getValue('button_title')) ->set('subject', $form_state->getValue('subject')) ->set('body', $form_state->getValue('body')) ->save(); } }