You are here

protected function FeaturesEditForm::updateRequired 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::updateRequired()

Updates the list of required config.

Return value

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

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

File

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

Class

FeaturesEditForm
Defines the features settings form.

Namespace

Drupal\features_ui\Form

Code

protected function updateRequired() {
  return $this
    ->updateConstrained('required');
}