features-8.x-3.11/modules/features_ui/src/Form/AssignmentBaseForm.php
modules/features_ui/src/Form/AssignmentBaseForm.php
<?php
namespace Drupal\features_ui\Form;
use Drupal\Core\Form\FormStateInterface;
/**
* Configures the selected configuration assignment method for this site.
*/
class AssignmentBaseForm extends AssignmentFormBase {
const METHOD_ID = 'base';
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'features_assignment_base_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);
// Pass the last argument to limit the select to config entity types that
// provide bundles for other entity types.
$this->setConfigTypeSelect($form, $settings['types']['config'], $this->t('base'));
// Pass the last argument to limit the select to content entity types do
// not have config entity provided bundles, thus avoiding duplication with
// the config type select options.
$this->setContentTypeSelect($form, $settings['types']['content'], $this->t('base'), TRUE);
$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 types selections.
$settings = $this->currentBundle->getAssignmentSettings(self::METHOD_ID);
$settings['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.'));
}
}
