You are here

public function ConfigProviderInterface::providesFullConfig in Configuration Provider 8

Same name and namespace in other branches
  1. 8.2 src/Plugin/ConfigProviderInterface.php \Drupal\config_provider\Plugin\ConfigProviderInterface::providesFullConfig()

Indicates whether the configuration items returned by the provider are full as opposed to partials.

A partial is a subset of a full configuration item and typically would be merged into the item. Example: an array of user permissions to be merged into a user role configuration item.

Return value

bool TRUE if the configuration returned is full; otherwise, FALSE.

1 method overrides ConfigProviderInterface::providesFullConfig()
ConfigProviderBase::providesFullConfig in src/Plugin/ConfigProviderBase.php
Indicates whether the configuration items returned by the provider are full as opposed to partials.

File

src/Plugin/ConfigProviderInterface.php, line 27

Class

ConfigProviderInterface
Defines an interface for Configuration provider plugins.

Namespace

Drupal\config_provider\Plugin

Code

public function providesFullConfig();