diff --git a/README.md b/README.md index 7a8f323a91398abfcd31d469ed294815b060b1b2..16442394ef503f25d1044dd859165fc685e21c26 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Config Filter -Modules such as Config Split want to modify the configuration when it is +Modules such as Configuration Split want to modify the configuration when it is synchronized between the database and the exported yaml files. This module provides the API to do so but does not influence a sites operation. @@ -13,10 +13,10 @@ Submit bug reports and feature suggestions, or track changes in the ## How it works -Config Filter 1.x swaps the `config.storage.sync` service from Drupal 8 core. -Config Filter 2.x applies the filters when the config storage transformation api is used. -This means that modules which use Config Filter work with the API added to Drupal 8.8. -Modules depending on Config Filter can depend on both 1.x or 2.x as the Config Filter API is the same. +Configuration Filter 1.x swaps the `config.storage.sync` service from Drupal 8 core. +Configuration Filter 2.x applies the filters when the config storage transformation api is used. +This means that modules which use Configuration Filter work with the API added to Drupal 8.8. +Modules depending on Configuration Filter can depend on both 1.x or 2.x as the Configuration Filter API is the same. ## What is a ConfigFilter @@ -63,7 +63,7 @@ This module requires no modules outside of Drupal core. ## Installation -You probably do not need to install Config Filter. +You probably do not need to install Configuration Filter. Install as you would normally install a contributed Drupal module. For further information, see [Installing Drupal Modules](https://www.drupal.org/docs/extending-drupal/installing-drupal-modules). @@ -72,7 +72,7 @@ information, see ## Configuration The module has no menu or modifiable settings. There is no configuration. -Config Filter is an API-only module. +Configuration Filter is an API-only module. ## Maintainers diff --git a/config_filter.info.yml b/config_filter.info.yml index 97e2b7d952b56e0d0e5fadbe3e3bb7d1a5017a0e..63bfe0d23c3173e523854fab0795211acba9cec1 100644 --- a/config_filter.info.yml +++ b/config_filter.info.yml @@ -1,5 +1,5 @@ -name: Config Filter +name: Configuration Filter type: module -description: Config Filter allows other modules to interact with a ConfigStorage through filter plugins. +description: Configuration Filter allows other modules to interact with a ConfigStorage through filter plugins. core_version_requirement: ^8.8 || ^9 || ^10 -package: Config +package: Configuration diff --git a/config_filter.install b/config_filter.install index f388be2ffadaa8565ee167db0ada80e62fd850bf..4249d280238278b05ce5e8d7f23d677a0f252d62 100644 --- a/config_filter.install +++ b/config_filter.install @@ -26,8 +26,8 @@ function config_filter_requirements($phase) { if (empty($modules_requiring_config_filter)) { $requirements['config_filter_disable'] = [ - 'title' => t('Config Filter'), - 'value' => t('Config Filter is enabled, but no modules require this module. You can safely disable Config Filter.'), + 'title' => t('Configuration Filter'), + 'value' => t('Configuration Filter is enabled, but no modules require this module. You can safely disable Config Filter.'), 'severity' => REQUIREMENT_WARNING, ]; }