You are here

public function FeaturesManagerInterface::detectOverrides in Features 8.4

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

Determines which config is overridden in a package.

@result array $different The array of config items that are overridden.

Parameters

\Drupal\features\Package $feature: The package array. The 'state' property is updated if overrides are detected.

bool $include_new: If set, include newly detected config not yet exported.

See also

\Drupal\features\FeaturesManagerInterface::detectNew()

1 method overrides FeaturesManagerInterface::detectOverrides()
FeaturesManager::detectOverrides in src/FeaturesManager.php
Determines which config is overridden in a package.

File

src/FeaturesManagerInterface.php, line 566

Class

FeaturesManagerInterface
Provides an interface for the FeaturesManager.

Namespace

Drupal\features

Code

public function detectOverrides(Package $feature, $include_new = FALSE);