class WebformAdminConfigVariantsForm in Webform 8.5
Same name and namespace in other branches
- 6.x src/Form/AdminConfig/WebformAdminConfigVariantsForm.php \Drupal\webform\Form\AdminConfig\WebformAdminConfigVariantsForm
Configure webform admin settings for variants.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
- class \Drupal\webform\Form\AdminConfig\WebformAdminConfigBaseForm
- class \Drupal\webform\Form\AdminConfig\WebformAdminConfigVariantsForm
- class \Drupal\webform\Form\AdminConfig\WebformAdminConfigBaseForm
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
Expanded class hierarchy of WebformAdminConfigVariantsForm
1 string reference to 'WebformAdminConfigVariantsForm'
File
- src/
Form/ AdminConfig/ WebformAdminConfigVariantsForm.php, line 15
Namespace
Drupal\webform\Form\AdminConfigView source
class WebformAdminConfigVariantsForm extends WebformAdminConfigBaseForm {
/**
* The webform variant manager.
*
* @var \Drupal\webform\Plugin\WebformVariantManagerInterface
*/
protected $variantManager;
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'webform_admin_config_variants_form';
}
/**
* Constructs a WebformAdminConfigVariantsForm object.
*
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The factory for configuration objects.
* @param \Drupal\webform\Plugin\WebformVariantManagerInterface $variant_manager
* The webform variant manager.
*/
public function __construct(ConfigFactoryInterface $config_factory, WebformVariantManagerInterface $variant_manager) {
parent::__construct($config_factory);
$this->variantManager = $variant_manager;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('config.factory'), $container
->get('plugin.manager.webform.variant'));
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('webform.settings');
// Display warning about needing 'Edit webform variants' permission.
$t_args = [
'@href' => Url::fromRoute('user.admin_permissions', [], [
'fragment' => 'module-webform',
])
->toString(),
];
if (!$this
->currentUser()
->hasPermission('edit webform variants')) {
$form['message'] = [
'#type' => 'webform_message',
'#message_message' => $this
->t('You need to be assigned <a href="@href">Edit webform variants</a> permission to be able create and manage variants.', $t_args),
'#message_type' => 'warning',
];
}
else {
$form['message'] = [
'#type' => 'webform_message',
'#message_message' => $this
->t('Users need to be assigned <a href="@href">Edit webform variants</a> permission to be able create and manage variants.', $t_args),
'#message_type' => 'info',
'#message_close' => TRUE,
'#message_storage' => WebformMessage::STORAGE_SESSION,
];
}
// Variant: Types.
$form['variant_types'] = [
'#type' => 'details',
'#title' => $this
->t('Variants'),
'#description' => $this
->t('Select available variants'),
'#open' => TRUE,
'#weight' => 10,
];
$form['variant_types']['excluded_variants'] = $this
->buildExcludedPlugins($this->variantManager, $config
->get('variant.excluded_variants') ?: []);
$excluded_variant_checkboxes = [];
foreach ($form['variant_types']['excluded_variants']['#options'] as $variant_id => $option) {
if ($excluded_variant_checkboxes) {
$excluded_variant_checkboxes[] = 'or';
}
$excluded_variant_checkboxes[] = [
':input[name="excluded_variants[' . $variant_id . ']"]' => [
'checked' => FALSE,
],
];
}
$form['variant_types']['excluded_variants_message'] = [
'#type' => 'webform_message',
'#message_message' => $this
->t('All excluded variants must be manually removed from existing webforms.'),
'#message_type' => 'warning',
'#states' => [
'visible' => $excluded_variant_checkboxes,
],
];
return parent::buildForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$excluded_variants = $this
->convertIncludedToExcludedPluginIds($this->variantManager, $form_state
->getValue('excluded_variants'));
// Update config and submit form.
$config = $this
->config('webform.settings');
$config
->set('variant', [
'excluded_variants' => $excluded_variants,
]);
parent::submitForm($form, $form_state);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigFormBaseTrait:: |
protected | function | Retrieves a configuration object. | |
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The config factory. | 1 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
FormBase:: |
public | function |
Form validation handler. Overrides FormInterface:: |
62 |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. | |
WebformAdminConfigBaseForm:: |
protected | function | Build bulk operation settings for webforms and submissions. | |
WebformAdminConfigBaseForm:: |
protected | function | Build excluded plugins element. | |
WebformAdminConfigBaseForm:: |
protected | function | Convert included ids returned from table select element to excluded ids. | |
WebformAdminConfigBaseForm:: |
protected | function |
Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait:: |
|
WebformAdminConfigBaseForm:: |
protected | function | Get plugin definitions. | |
WebformAdminConfigBaseForm:: |
public static | function | Form API callback. Validate bulk form actions. | |
WebformAdminConfigVariantsForm:: |
protected | property | The webform variant manager. | |
WebformAdminConfigVariantsForm:: |
public | function |
Form constructor. Overrides ConfigFormBase:: |
|
WebformAdminConfigVariantsForm:: |
public static | function |
Instantiates a new instance of this class. Overrides ConfigFormBase:: |
|
WebformAdminConfigVariantsForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
WebformAdminConfigVariantsForm:: |
public | function |
Form submission handler. Overrides WebformAdminConfigBaseForm:: |
|
WebformAdminConfigVariantsForm:: |
public | function |
Constructs a WebformAdminConfigVariantsForm object. Overrides ConfigFormBase:: |