You are here

protected function FeaturesEditForm::updateExcluded in Features 8.3

Same name and namespace in other branches
  1. 8.4 modules/features_ui/src/Form/FeaturesEditForm.php \Drupal\features_ui\Form\FeaturesEditForm::updateExcluded()

Updates the list of excluded config.

Return value

array The list of excluded config in a simple array of full config names suitable for storing in the info.yml file.

1 call to FeaturesEditForm::updateExcluded()
FeaturesEditForm::submitForm in modules/features_ui/src/Form/FeaturesEditForm.php
Form submission handler.

File

modules/features_ui/src/Form/FeaturesEditForm.php, line 1058

Class

FeaturesEditForm
Defines the features settings form.

Namespace

Drupal\features_ui\Form

Code

protected function updateExcluded() {
  return $this
    ->updateConstrained('excluded');
}