function UpdateManagerUpdate::submitForm
Same name in other branches
- 9 core/modules/update/src/Form/UpdateManagerUpdate.php \Drupal\update\Form\UpdateManagerUpdate::submitForm()
- 10 core/modules/update/src/Form/UpdateManagerUpdate.php \Drupal\update\Form\UpdateManagerUpdate::submitForm()
- 11.x core/modules/update/src/Form/UpdateManagerUpdate.php \Drupal\update\Form\UpdateManagerUpdate::submitForm()
Overrides FormInterface::submitForm
File
-
core/
modules/ update/ src/ Form/ UpdateManagerUpdate.php, line 364
Class
- UpdateManagerUpdate
- Configure update settings for this site.
Namespace
Drupal\update\FormCode
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->moduleHandler
->loadInclude('update', 'inc', 'update.manager');
$projects = [];
foreach ([
'projects',
'disabled_projects',
] as $type) {
if (!$form_state->isValueEmpty($type)) {
$projects = array_merge($projects, array_keys(array_filter($form_state->getValue($type))));
}
}
$operations = [];
foreach ($projects as $project) {
$operations[] = [
'update_manager_batch_project_get',
[
$project,
$form_state->getValue([
'project_downloads',
$project,
]),
],
];
}
$batch = [
'title' => $this->t('Downloading updates'),
'init_message' => $this->t('Preparing to download selected updates'),
'operations' => $operations,
'finished' => 'update_manager_download_batch_finished',
'file' => drupal_get_path('module', 'update') . '/update.manager.inc',
];
batch_set($batch);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.