You are here

protected function FeaturesAssignmentProfile::listRequiredStandardConfig in Features 8.4

Same name and namespace in other branches
  1. 8.3 src/Plugin/FeaturesAssignment/FeaturesAssignmentProfile.php \Drupal\features\Plugin\FeaturesAssignment\FeaturesAssignmentProfile::listRequiredStandardConfig()

Returns the list of configuration items required by the Standard install profile.

If install code is adapted from the Standard profile, these configuration items will be required.

Return value

array An array of configuration item names.

1 call to FeaturesAssignmentProfile::listRequiredStandardConfig()
FeaturesAssignmentProfile::assignPackages in src/Plugin/FeaturesAssignment/FeaturesAssignmentProfile.php
Performs package assignment.

File

src/Plugin/FeaturesAssignment/FeaturesAssignmentProfile.php, line 173

Class

FeaturesAssignmentProfile
Class for adding configuration for the optional install profile.

Namespace

Drupal\features\Plugin\FeaturesAssignment

Code

protected function listRequiredStandardConfig() {
  return [
    'contact.form.feedback',
    'user.role.administrator',
  ];
}