You are here

public function FeaturesManagerInterface::getConfigCollection in Features 8.4

Same name and namespace in other branches
  1. 8.3 src/FeaturesManagerInterface.php \Drupal\features\FeaturesManagerInterface::getConfigCollection()

Gets an array of site configuration.

Parameters

bool $reset: If TRUE, recalculate the configuration (undo all assignment methods).

Return value

\Drupal\features\ConfigurationItem[] An array of items, each with the following keys:

  • 'name': prefixed configuration item name.
  • 'name_short': configuration item name without prefix.
  • 'label': human readable name of configuration item.
  • 'type': type of configuration.
  • 'data': the contents of the configuration item in exported format.
  • 'dependents': array of names of dependent configuration items.
  • 'subdirectory': feature subdirectory to export item to.
  • 'package': machine name of a package the configuration is assigned to.
  • 'extension_provided': whether the configuration is provided by an extension.
  • 'package_excluded': array of package names that this item should be excluded from.
1 method overrides FeaturesManagerInterface::getConfigCollection()
FeaturesManager::getConfigCollection in src/FeaturesManager.php
Gets an array of site configuration.

File

src/FeaturesManagerInterface.php, line 89

Class

FeaturesManagerInterface
Provides an interface for the FeaturesManager.

Namespace

Drupal\features

Code

public function getConfigCollection($reset = FALSE);