farmOS/modules/core/role/modules/account_admin/src/Form/AccountAdminSettingsForm.php

100 lines
2.6 KiB
PHP

<?php
namespace Drupal\farm_role_account_admin\Form;
use Drupal\Core\Cache\CacheTagsInvalidatorInterface;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides a settings form for the Account Admin Role module.
*/
class AccountAdminSettingsForm extends ConfigFormbase {
/**
* Config settings.
*
* @var string
*/
const SETTINGS = 'farm_role_account_admin.settings';
/**
* The cache tags invalidator.
*
* @var \Drupal\Core\Cache\CacheTagsInvalidatorInterface
*/
protected $cacheTagsInvalidator;
/**
* Constructs a \Drupal\system\ConfigFormBase object.
*
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The factory for configuration objects.
* @param \Drupal\Core\Cache\CacheTagsInvalidatorInterface $cache_tags_invalidator
* The cache tags invalidator.
*/
public function __construct(ConfigFactoryInterface $config_factory, CacheTagsInvalidatorInterface $cache_tags_invalidator) {
$this->setConfigFactory($config_factory);
$this->cacheTagsInvalidator = $cache_tags_invalidator;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static(
$container->get('config.factory'),
$container->get('cache_tags.invalidator'),
);
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'farm_role_account_admin_settings';
}
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames() {
return [
static::SETTINGS,
];
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateinterface $form_state) {
$config = $this->config(static::SETTINGS);
$form['allow_peer_role_assignment'] = [
'#type' => 'checkbox',
'#title' => $this->t('Allow peer role assignment'),
'#description' => $this->t('Allow users with the Account Admin role to assign/revoke the Account Admin role.'),
'#default_value' => $config->get('allow_peer_role_assignment'),
];
return parent::buildForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->configFactory->getEditable(static::SETTINGS)
->set('allow_peer_role_assignment', $form_state->getValue('allow_peer_role_assignment'))
->save();
// Invalidate the user_role:farm_account_admin cache tag.
$this->cacheTagsInvalidator->invalidateTags(['user_role:farm_account_admin']);
parent::submitForm($form, $form_state);
}
}