public function ConfigProviderInterface::providesFullConfig in Configuration Provider 8.2
Same name and namespace in other branches
- 8 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 26
Class
- ConfigProviderInterface
- Defines an interface for Configuration provider plugins.
Namespace
Drupal\config_provider\PluginCode
public function providesFullConfig();