You are here

AssignmentProfileForm.php in Features 8.4

Same filename and directory in other branches
  1. 8.3 modules/features_ui/src/Form/AssignmentProfileForm.php

File

modules/features_ui/src/Form/AssignmentProfileForm.php
View source
<?php

namespace Drupal\features_ui\Form;

use Drupal\Core\Form\FormStateInterface;

/**
 * Configures the selected configuration assignment method for this profile.
 */
class AssignmentProfileForm extends AssignmentFormBase {
  const METHOD_ID = 'profile';

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'features_assignment_profile_form';
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state, $bundle_name = NULL) {
    $this->currentBundle = $this->assigner
      ->loadBundle($bundle_name);
    $settings = $this->currentBundle
      ->getAssignmentSettings(self::METHOD_ID);
    $this
      ->setConfigTypeSelect($form, $settings['types']['config'], $this
      ->t('profile'));
    $form['curated'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Add commonly-needed configuration'),
      '#default_value' => $settings['curated'],
      '#description' => $this
        ->t('Select this option to add a curated list of commonly-needed configuration including cron- and theme-related settings to the install profile.'),
    ];
    $standard_settings = $settings['standard'];
    $form['standard'] = [
      '#type' => 'fieldset',
      '#title' => $this
        ->t('Crib from the Standard profile'),
      '#tree' => TRUE,
    ];
    $form['standard']['files'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Crib code'),
      '#default_value' => $standard_settings['files'],
      '#description' => $this
        ->t('Select this option to add configuration and other files to the optional install profile from the Drupal core Standard install profile. Without these additions, a generated install profile will be missing some important initial setup.'),
    ];
    $form['standard']['dependencies'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Crib dependencies'),
      '#default_value' => $standard_settings['dependencies'],
      '#description' => $this
        ->t('Select this option to add module and theme dependencies from the Standard install profile.'),
    ];
    $this
      ->setActions($form, self::METHOD_ID);
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function validateForm(array &$form, FormStateInterface $form_state) {
    $form_state
      ->setValue('types', array_map('array_filter', $form_state
      ->getValue('types')));
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {

    // Merge in selections.
    $settings = $this->currentBundle
      ->getAssignmentSettings(self::METHOD_ID);
    $settings = array_merge($settings, [
      'curated' => $form_state
        ->getValue('curated'),
      'standard' => $form_state
        ->getValue('standard'),
      'types' => $form_state
        ->getValue('types'),
    ]);
    $this->currentBundle
      ->setAssignmentSettings(self::METHOD_ID, $settings)
      ->save();
    $this
      ->setRedirect($form_state);
    $this
      ->messenger()
      ->addStatus($this
      ->t('Package assignment configuration saved.'));
  }

}

Classes

Namesort descending Description
AssignmentProfileForm Configures the selected configuration assignment method for this profile.