public function ConfigProviderBase::providesFullConfig in Configuration Provider 8
Same name and namespace in other branches
- 8.2 src/Plugin/ConfigProviderBase.php \Drupal\config_provider\Plugin\ConfigProviderBase::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.
Overrides ConfigProviderInterface::providesFullConfig
File
- src/
Plugin/ ConfigProviderBase.php, line 40
Class
- ConfigProviderBase
- Base class for Configuration provider plugins.
Namespace
Drupal\config_provider\PluginCode
public function providesFullConfig() {
return TRUE;
}