You are here

public function ConfigSplitEntityForm::form in Configuration Split 2.0.x

Same name and namespace in other branches
  1. 8 src/Form/ConfigSplitEntityForm.php \Drupal\config_split\Form\ConfigSplitEntityForm::form()

Gets the actual form array to be built.

Overrides EntityForm::form

See also

\Drupal\Core\Entity\EntityForm::processForm()

\Drupal\Core\Entity\EntityForm::afterBuild()

File

src/Form/ConfigSplitEntityForm.php, line 73

Class

ConfigSplitEntityForm
The entity form.

Namespace

Drupal\config_split\Form

Code

public function form(array $form, FormStateInterface $form_state) {
  $form = parent::form($form, $form_state);

  /** @var \Drupal\config_split\Entity\ConfigSplitEntityInterface $config */
  $config = $this->entity;
  $form['label'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Label'),
    '#maxlength' => 255,
    '#default_value' => $config
      ->label(),
    '#description' => $this
      ->t("Label for the Configuration Split setting."),
    '#required' => TRUE,
  ];
  $form['id'] = [
    '#type' => 'machine_name',
    '#default_value' => $config
      ->id(),
    '#machine_name' => [
      'exists' => '\\Drupal\\config_split\\Entity\\ConfigSplitEntity::load',
    ],
  ];
  $form['static_fieldset'] = [
    '#type' => 'fieldset',
    '#title' => $this
      ->t('Static Settings'),
    '#description' => $this
      ->t("These settings can be overridden in settings.php"),
  ];
  $form['static_fieldset']['description'] = [
    '#type' => 'textarea',
    '#title' => $this
      ->t('Description'),
    '#description' => $this
      ->t('Describe this config split setting. The text will be displayed on the <em>Configuration Split setting</em> list page.'),
    '#default_value' => $config
      ->get('description'),
  ];
  $form['static_fieldset']['storage'] = [
    '#type' => 'radios',
    '#title' => $this
      ->t('Storage'),
    '#description' => $this
      ->t('Select where you would like the split to be stored.<br /><em>Folder:</em> A specified directory on its own. Select this option if you want to decide the placement of your configuration directories.<br /><em>Collection:</em> A collection inside of the sync storage. Select this option if you want splits to be part of the main config, including in zip archives.<br /><em>Database:</em> A dedicated table in the database. Select this option if the split should not be shared (it will be included in database dumps).'),
    '#default_value' => $config
      ->get('storage') ?? 'folder',
    '#options' => [
      'folder' => $this
        ->t('Folder'),
      'collection' => $this
        ->t('Collection'),
      'database' => $this
        ->t('Database'),
    ],
  ];
  $form['static_fieldset']['folder'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Folder'),
    '#description' => $this
      ->t('The directory, relative to the Drupal root, in which to save the filtered config. This is typically a sibling directory of what you defined as <code>$settings["config_sync_directory"]</code> in settings.php, for more information consult the README.<br/>Configuration related to the "filtered" items below will be split from the main configuration and exported to this folder.'),
    '#default_value' => $config
      ->get('folder'),
    '#states' => [
      'visible' => [
        ':input[name="storage"]' => [
          'value' => 'folder',
        ],
      ],
      'required' => [
        ':input[name="storage"]' => [
          'value' => 'folder',
        ],
      ],
    ],
  ];
  $form['static_fieldset']['weight'] = [
    '#type' => 'number',
    '#title' => $this
      ->t('Weight'),
    '#description' => $this
      ->t('The weight to order the splits.'),
    '#default_value' => $config
      ->get('weight'),
  ];
  $form['static_fieldset']['status_fieldset'] = [
    '#type' => 'fieldset',
    '#title' => $this
      ->t('Status'),
    '#description' => $this
      ->t('Changing the status does not affect the other active config. You need to activate or deactivate the split for that.'),
  ];
  $overrideExample = '$config["config_split.config_split.' . ($config
    ->get('id') ?? 'example') . '"]["status"] = ' . ($config
    ->get('status') ? 'FALSE' : 'TRUE') . ';';
  $form['static_fieldset']['status_fieldset']['status'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Active'),
    '#description' => $this
      ->t('Active splits get used to split and merge when importing and exporting config, this property is likely what you want to override in settings.php, for example: <code>@example</code>', [
      '@example' => $overrideExample,
    ]),
    '#default_value' => $config
      ->get('status') ? TRUE : FALSE,
  ];
  $overrideDefault = $this->statusOverride
    ->getSplitOverride((string) $config
    ->id());
  if ($overrideDefault === NULL) {
    $overrideDefault = 'none';
  }
  else {
    $overrideDefault = $overrideDefault ? 'active' : 'inactive';
  }
  $form['static_fieldset']['status_fieldset']['status_override'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Status override'),
    '#default_value' => $overrideDefault,
    '#options' => [
      'none' => $this
        ->t('None'),
      'active' => $this
        ->t('Active'),
      'inactive' => $this
        ->t('Inactive'),
    ],
    '#description' => $this
      ->t('This setting will override the status of the split with a config override saved in the database (state). The config override from settings.php will override this and take precedence.'),
  ];
  $form['complete_fieldset'] = [
    '#type' => 'fieldset',
    '#title' => $this
      ->t('Complete Split'),
    '#description' => $this
      ->t("<em>Complete Split:</em>\n       Configuration listed here will be removed from the sync directory and\n       saved in the split storage instead. Modules will be removed from\n       core.extension when exporting (and added back when importing with the\n       split enabled.). Config dependencies are updated and their changes are\n       recorded in a config patch saved in in the split storage."),
  ];
  $module_handler = $this->moduleHandler;
  $modules = array_map(function ($module) use ($module_handler) {
    return $module_handler
      ->getName($module
      ->getName());
  }, $module_handler
    ->getModuleList());

  // Add the existing ones with the machine name so they do not get lost.
  $modules = $modules + array_combine(array_keys($config
    ->get('module')), array_keys($config
    ->get('module')));

  // Sorting module list by name for making selection easier.
  asort($modules, SORT_NATURAL | SORT_FLAG_CASE);
  $multiselect_type = 'select';
  if (!$this
    ->useSelectList()) {
    $multiselect_type = 'checkboxes';

    // Add the css library if we use checkboxes.
    $form['#attached']['library'][] = 'config_split/config-split-form';
  }
  $form['complete_fieldset']['module'] = [
    '#type' => $multiselect_type,
    '#title' => $this
      ->t('Modules'),
    '#description' => $this
      ->t('Select modules to split. Configuration depending on the modules is changed as if the module would be uninstalled or automatically split off completely as well.'),
    '#options' => $modules,
    '#size' => 20,
    '#multiple' => TRUE,
    '#default_value' => array_keys($config
      ->get('module')),
  ];

  // We should probably find a better way for this.
  $theme_handler = $this->themeHandler;
  $themes = array_map(function ($theme) use ($theme_handler) {
    return $theme_handler
      ->getName($theme
      ->getName());
  }, $theme_handler
    ->listInfo());
  $form['complete_fieldset']['theme'] = [
    '#type' => $multiselect_type,
    '#title' => $this
      ->t('Themes'),
    '#description' => $this
      ->t('Select themes to split.'),
    '#options' => $themes,
    '#size' => 5,
    '#multiple' => TRUE,
    '#default_value' => array_keys($config
      ->get('theme')),
  ];

  // At this stage we do not support themes. @TODO: support themes.
  $form['complete_fieldset']['theme']['#access'] = FALSE;
  $options = array_combine($this
    ->configFactory()
    ->listAll(), $this
    ->configFactory()
    ->listAll());
  $form['complete_fieldset']['complete_picker'] = [
    '#type' => $multiselect_type,
    '#title' => $this
      ->t('Configuration items'),
    '#description' => $this
      ->t('Select configuration to split. Configuration depending on split modules does not need to be selected here specifically.'),
    '#options' => $options,
    '#size' => 20,
    '#multiple' => TRUE,
    '#default_value' => array_intersect($config
      ->get('complete_list'), array_keys($options)),
  ];
  $form['complete_fieldset']['complete_text'] = [
    '#type' => 'textarea',
    '#title' => $this
      ->t('Additional configuration'),
    '#description' => $this
      ->t('Select additional configuration to split. One configuration key per line. You can use wildcards.'),
    '#size' => 5,
    '#default_value' => implode("\n", array_diff($config
      ->get('complete_list'), array_keys($options))),
  ];
  $form['partial_fieldset'] = [
    '#type' => 'fieldset',
    '#title' => $this
      ->t('Partial Split'),
    '#description' => $this
      ->t("<em>Partial Split:</em>\n       Configuration listed here will be left untouched in the main sync\n       directory. The <em>currently active</em> version will be compared to the\n       config in the sync directory and what is different is saved to the split\n       storage as a config patch.<br />\n       Use this for configuration that is different on your site but which\n       should also remain in the main sync directory."),
  ];
  $form['partial_fieldset']['partial_picker'] = [
    '#type' => $multiselect_type,
    '#title' => $this
      ->t('Configuration items'),
    '#description' => $this
      ->t('Select configuration to split partially.'),
    '#options' => $options,
    '#size' => 20,
    '#multiple' => TRUE,
    '#default_value' => array_intersect($config
      ->get('partial_list'), array_keys($options)),
  ];
  $form['partial_fieldset']['partial_text'] = [
    '#type' => 'textarea',
    '#title' => $this
      ->t('Additional configuration'),
    '#description' => $this
      ->t('Select additional configuration to partially split. One configuration key per line. You can use wildcards.'),
    '#size' => 5,
    '#default_value' => implode("\n", array_diff($config
      ->get('partial_list'), array_keys($options))),
  ];
  return $form;
}