public function SocialCommentUploadConfigOverride::createConfigObject in Open Social 8
Same name and namespace in other branches
- 8.9 modules/social_features/social_comment_upload/src/SocialCommentUploadConfigOverride.php \Drupal\social_comment_upload\SocialCommentUploadConfigOverride::createConfigObject()
- 8.2 modules/social_features/social_comment_upload/src/SocialCommentUploadConfigOverride.php \Drupal\social_comment_upload\SocialCommentUploadConfigOverride::createConfigObject()
- 8.3 modules/social_features/social_comment_upload/src/SocialCommentUploadConfigOverride.php \Drupal\social_comment_upload\SocialCommentUploadConfigOverride::createConfigObject()
- 8.4 modules/social_features/social_comment_upload/src/SocialCommentUploadConfigOverride.php \Drupal\social_comment_upload\SocialCommentUploadConfigOverride::createConfigObject()
- 8.5 modules/social_features/social_comment_upload/src/SocialCommentUploadConfigOverride.php \Drupal\social_comment_upload\SocialCommentUploadConfigOverride::createConfigObject()
- 8.6 modules/social_features/social_comment_upload/src/SocialCommentUploadConfigOverride.php \Drupal\social_comment_upload\SocialCommentUploadConfigOverride::createConfigObject()
- 8.7 modules/social_features/social_comment_upload/src/SocialCommentUploadConfigOverride.php \Drupal\social_comment_upload\SocialCommentUploadConfigOverride::createConfigObject()
- 8.8 modules/social_features/social_comment_upload/src/SocialCommentUploadConfigOverride.php \Drupal\social_comment_upload\SocialCommentUploadConfigOverride::createConfigObject()
- 10.3.x modules/social_features/social_comment_upload/src/SocialCommentUploadConfigOverride.php \Drupal\social_comment_upload\SocialCommentUploadConfigOverride::createConfigObject()
- 10.0.x modules/social_features/social_comment_upload/src/SocialCommentUploadConfigOverride.php \Drupal\social_comment_upload\SocialCommentUploadConfigOverride::createConfigObject()
- 10.1.x modules/social_features/social_comment_upload/src/SocialCommentUploadConfigOverride.php \Drupal\social_comment_upload\SocialCommentUploadConfigOverride::createConfigObject()
- 10.2.x modules/social_features/social_comment_upload/src/SocialCommentUploadConfigOverride.php \Drupal\social_comment_upload\SocialCommentUploadConfigOverride::createConfigObject()
Creates a configuration object for use during install and synchronization.
If the overrider stores its overrides in configuration collections then it can have its own implementation of \Drupal\Core\Config\StorableConfigBase. Configuration overriders can link themselves to a configuration collection by listening to the \Drupal\Core\Config\ConfigEvents::COLLECTION_INFO event and adding the collections they are responsible for. Doing this will allow installation and synchronization to use the overrider's implementation of StorableConfigBase.
Parameters
string $name: The configuration object name.
string $collection: The configuration collection.
Return value
\Drupal\Core\Config\StorableConfigBase The configuration object for the provided name and collection.
Overrides ConfigFactoryOverrideInterface::createConfigObject
See also
\Drupal\Core\Config\ConfigCollectionInfo
\Drupal\Core\Config\ConfigImporter::importConfig()
\Drupal\Core\Config\ConfigInstaller::createConfiguration()
File
- modules/
social_features/ social_comment_upload/ src/ SocialCommentUploadConfigOverride.php, line 113
Class
- SocialCommentUploadConfigOverride
- Class SocialCommentUploadConfigOverride.
Namespace
Drupal\social_comment_uploadCode
public function createConfigObject($name, $collection = StorageInterface::DEFAULT_COLLECTION) {
return NULL;
}