You are here

function easy_uninstall_form_alter in Easy Install 8

Implements hook_form_alter().

File

./easy_uninstall.module, line 15
Easy uninstall module file.

Code

function easy_uninstall_form_alter(&$form, FormStateInterface $form_state, $form_id) {
  $form_ids = [
    'system_modules_uninstall_confirm_form',
  ];
  if (in_array($form_id, $form_ids)) {
    $modules = \Drupal::service('keyvalue.expirable')
      ->get('modules_uninstall')
      ->get(\Drupal::currentUser()
      ->id());

    //$module_handler = \Drupal::service('module_handler');
    foreach ($modules as $module) {

      //$schema_dir = drupal_get_path('module', $module) . '/' . InstallStorage::CONFIG_SCHEMA_DIRECTORY;
      $install_dir = drupal_get_path('module', $module) . '/' . InstallStorage::CONFIG_INSTALL_DIRECTORY;

      //$optional_dir = drupal_get_path('module', $module) . '/' . InstallStorage::CONFIG_OPTIONAL_DIRECTORY;
      $details = file_scan_directory($install_dir, "/\\.(yml)\$/");
      if (!empty($details)) {
        $form['modules_config'][$module] = [
          '#type' => 'details',
          '#title' => t('@name', [
            '@name' => $module,
          ]),
          '#description' => 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,
        ];
        $details = file_scan_directory($install_dir, "/\\.(yml)\$/");
        $options = [];
        foreach ($details as $config_value) {
          $options[$config_value->name] = $config_value->name;
        }
        $form['modules_config'][$module]['configs'] = [
          '#type' => 'checkboxes',
          '#label' => $config_value->name,
          '#title' => t('Select the configurations to be deleted'),
          '#options' => $options,
          '#validated' => TRUE,
        ];
      }
      foreach (array_keys($form['actions']) as $action) {
        if ($action != 'preview' && isset($form['actions'][$action]['#type']) && $form['actions'][$action]['#type'] === 'submit') {
          $form['actions'][$action]['#submit'][0] = 'easy_uninstall_form_submit';
        }
      }
    }
    $form['all_configs'] = [
      '#type' => 'checkbox',
      '#label' => t('Delete all the listed configurations'),
      '#title' => t('Delete all the listed configurations'),
      '#validated' => TRUE,
    ];
  }
}