class WebformAdminConfigExportersForm in Webform 8.5
Same name and namespace in other branches
- 6.x src/Form/AdminConfig/WebformAdminConfigExportersForm.php \Drupal\webform\Form\AdminConfig\WebformAdminConfigExportersForm
Configure webform admin settings for exporters.
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\WebformAdminConfigExportersForm
- class \Drupal\webform\Form\AdminConfig\WebformAdminConfigBaseForm
- class \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTrait
Expanded class hierarchy of WebformAdminConfigExportersForm
1 string reference to 'WebformAdminConfigExportersForm'
File
- src/
Form/ AdminConfig/ WebformAdminConfigExportersForm.php, line 16
Namespace
Drupal\webform\Form\AdminConfigView source
class WebformAdminConfigExportersForm extends WebformAdminConfigBaseForm {
/**
* The file system service.
*
* @var \Drupal\Core\File\FileSystemInterface
*/
protected $fileSystem;
/**
* The webform exporter manager.
*
* @var \Drupal\webform\Plugin\WebformExporterManagerInterface
*/
protected $exporterManager;
/**
* The webform submission exporter.
*
* @var \Drupal\webform\WebformSubmissionExporterInterface
*/
protected $submissionExporter;
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'webform_admin_config_exporters_form';
}
/**
* Constructs a WebformAdminConfigExportersForm object.
*
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The factory for configuration objects.
* @param \Drupal\Core\File\FileSystemInterface $file_system
* The file system service.
* @param \Drupal\webform\Plugin\WebformExporterManagerInterface $exporter_manager
* The webform exporter manager.
* @param \Drupal\webform\WebformSubmissionExporterInterface $submission_exporter
* The webform submission exporter.
*/
public function __construct(ConfigFactoryInterface $config_factory, FileSystemInterface $file_system, WebformExporterManagerInterface $exporter_manager, WebformSubmissionExporterInterface $submission_exporter) {
parent::__construct($config_factory);
$this->fileSystem = $file_system;
$this->exporterManager = $exporter_manager;
$this->submissionExporter = $submission_exporter;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('config.factory'), $container
->get('file_system'), $container
->get('plugin.manager.webform.exporter'), $container
->get('webform_submission.exporter'));
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('webform.settings');
$form['export_settings'] = [
'#type' => 'details',
'#title' => $this
->t('Export general settings'),
'#open' => TRUE,
];
$form['export_settings']['temp_directory'] = [
'#type' => 'textfield',
'#title' => $this
->t('Temporary directory'),
'#description' => $this
->t('A local file system path where temporary export files will be stored. This directory should be persistent between requests and should not be accessible over the web.'),
'#required' => TRUE,
'#default_value' => $config
->get('export.temp_directory') ?: $this->fileSystem
->getTempDirectory(),
];
// Export.
$form['export_default_settings'] = [
'#type' => 'details',
'#title' => $this
->t('Export default settings'),
'#description' => $this
->t('Enter default export settings to be used by all webforms.'),
'#open' => TRUE,
];
$export_options = $config
->get('export');
$export_form_state = new FormState();
$this->submissionExporter
->buildExportOptionsForm($form['export_default_settings'], $export_form_state, $export_options);
// (Excluded) Exporters.
$form['exporter_types'] = [
'#type' => 'details',
'#title' => $this
->t('Submission exporters'),
'#description' => $this
->t('Select available submission exporters'),
'#open' => TRUE,
];
$form['exporter_types']['excluded_exporters'] = $this
->buildExcludedPlugins($this->exporterManager, $config
->get('export.excluded_exporters') ?: [] ?: []);
return parent::buildForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function validateForm(array &$form, FormStateInterface $form_state) {
// Copied from: system_check_directory().
$temp_directory = $form_state
->getValue('temp_directory');
if (!is_dir($temp_directory) && !$this->fileSystem
->mkdir($temp_directory, NULL, TRUE)) {
$form_state
->setErrorByName('temp_directory', $this
->t('The directory %directory does not exist and could not be created.', [
'%directory' => $temp_directory,
]));
}
if (is_dir($temp_directory) && !is_writable($temp_directory) && !$this->fileSystem
->chmod($temp_directory)) {
$form_state
->setErrorByName('temp_directory', $this
->t('The directory %directory exists but is not writable and could not be made writable.', [
'%directory' => $temp_directory,
]));
}
parent::validateForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$excluded_exporters = $this
->convertIncludedToExcludedPluginIds($this->exporterManager, $form_state
->getValue('excluded_exporters'));
$values = $form_state
->getValues();
$export = $this->submissionExporter
->getValuesFromInput($values) + [
'excluded_exporters' => $excluded_exporters,
];
// Set custom temp directory.
$export['temp_directory'] = $values['temp_directory'] === $this->fileSystem
->getTempDirectory() ? '' : $values['temp_directory'];
// Update config and submit form.
$config = $this
->config('webform.settings');
$config
->set('export', $export);
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. | |
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. | |
WebformAdminConfigExportersForm:: |
protected | property | The webform exporter manager. | |
WebformAdminConfigExportersForm:: |
protected | property | The file system service. | |
WebformAdminConfigExportersForm:: |
protected | property | The webform submission exporter. | |
WebformAdminConfigExportersForm:: |
public | function |
Form constructor. Overrides ConfigFormBase:: |
|
WebformAdminConfigExportersForm:: |
public static | function |
Instantiates a new instance of this class. Overrides ConfigFormBase:: |
|
WebformAdminConfigExportersForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
WebformAdminConfigExportersForm:: |
public | function |
Form submission handler. Overrides WebformAdminConfigBaseForm:: |
|
WebformAdminConfigExportersForm:: |
public | function |
Form validation handler. Overrides FormBase:: |
|
WebformAdminConfigExportersForm:: |
public | function |
Constructs a WebformAdminConfigExportersForm object. Overrides ConfigFormBase:: |