You are here

public function PurgeConfigurationsConfirmForm::buildForm in Easy Install 8.10

Same name and namespace in other branches
  1. 8.9 src/Form/PurgeConfigurationsConfirmForm.php \Drupal\easy_install\Form\PurgeConfigurationsConfirmForm::buildForm()
  2. 8.5 src/Form/PurgeConfigurationsConfirmForm.php \Drupal\easy_install\Form\PurgeConfigurationsConfirmForm::buildForm()
  3. 8.6 src/Form/PurgeConfigurationsConfirmForm.php \Drupal\easy_install\Form\PurgeConfigurationsConfirmForm::buildForm()
  4. 8.7 src/Form/PurgeConfigurationsConfirmForm.php \Drupal\easy_install\Form\PurgeConfigurationsConfirmForm::buildForm()
  5. 8.8 src/Form/PurgeConfigurationsConfirmForm.php \Drupal\easy_install\Form\PurgeConfigurationsConfirmForm::buildForm()

Form constructor.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form structure.

Overrides ConfirmFormBase::buildForm

File

src/Form/PurgeConfigurationsConfirmForm.php, line 129

Class

PurgeConfigurationsConfirmForm
Builds a confirmation form to uninstall selected modules.

Namespace

Drupal\easy_install\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {

  // Retrieve the list of modules from the key value store.
  $account = $this
    ->currentUser()
    ->id();
  $this->modules = $this->keyValueExpirable
    ->get($account);

  // Prevent this page from showing when the module list is empty.
  if (empty($this->modules['install'])) {
    $this
      ->messenger()
      ->addError($this
      ->t('The selected modules could not be Purged, either due to a website problem or due to the uninstall confirmation form timing out. Please try again.'));
    return $this
      ->redirect('easy_install.purge_configurations');
  }
  $form['text']['#markup'] = '<p>' . $this
    ->t('Select the following configurations, selected configs will be completely deleted from your site!') . '</p>';
  $form['modules'] = [
    '#theme' => 'item_list',
    '#items' => $this->modules['install'],
  ];
  foreach ($this->modules['install'] as $module => $module_name) {
    $install_dir = drupal_get_path('module', $module) . '/' . InstallStorage::CONFIG_INSTALL_DIRECTORY;
    $optional_dir = drupal_get_path('module', $module) . '/' . InstallStorage::CONFIG_OPTIONAL_DIRECTORY;
    if (file_exists($install_dir)) {
      $install_details = $this->fileSystem
        ->scanDirectory($install_dir, "/\\.(yml)\$/");
    }
    if (!empty($install_details)) {
      $form['modules_config'][$module] = [
        '#type' => 'details',
        '#title' => $this
          ->t('@name', [
          '@name' => $module,
        ]),
        '#description' => $this
          ->t('We found that @description module have configurations with it, if you like to delete it Please select the checkbox', [
          '@description' => $module,
        ]),
        '#weight' => 0,
        '#validated' => TRUE,
        '#open' => TRUE,
      ];
      if (file_exists($install_dir)) {
        $install_details = $this->fileSystem
          ->scanDirectory($install_dir, "/\\.(yml)\$/");
      }
      $ins_options = [];
      foreach ($install_details as $config_value) {
        $ins_options[$config_value->name] = $config_value->name;
      }
      if (!empty($ins_options)) {
        $form['modules_config'][$module]['configs'] = [
          '#type' => 'checkboxes',
          '#label' => $config_value->name,
          '#title' => 'Select the configurations to be deleted',
          '#options' => $ins_options,
          '#validated' => TRUE,
        ];
      }
      if (file_exists($optional_dir)) {
        $optional_details = $this->fileSystem
          ->scanDirectory($optional_dir, "/\\.(yml)\$/");
        $opt_options = [];
        foreach ($optional_details as $config_value) {
          $opt_options[$config_value->name] = $config_value->name;
        }
      }
      if (!empty($opt_options)) {
        $form['modules_config'][$module]['opt_details'] = [
          '#type' => 'details',
          '#title' => "Optional Configurations",
          '#weight' => 0,
          '#validated' => TRUE,
          '#open' => TRUE,
        ];
        $form['modules_config'][$module]['opt_details']['opt_configs'] = [
          '#type' => 'checkboxes',
          '#label' => $config_value->name,
          '#options' => $opt_options,
          '#validated' => TRUE,
        ];
      }
    }
  }
  $label = 'Delete all the listed configurations except optional';
  if (empty($opt_options)) {
    $label = 'Delete all the listed configurations';
  }
  if (!empty($ins_options)) {
    $form['ins_all_configs'] = [
      '#type' => 'checkbox',
      '#label' => $label,
      '#title' => $label,
      '#validated' => TRUE,
    ];
  }
  if (!empty($opt_options)) {
    $form['opt_all_configs'] = [
      '#type' => 'checkbox',
      '#label' => 'Delete all the listed Optional configurations',
      '#title' => 'Delete all the listed Optional configurations',
      '#validated' => TRUE,
    ];
  }
  return parent::buildForm($form, $form_state);
}