diff --git a/core/modules/config/config.module b/core/modules/config/config.module
index f9b37ad..cc753b7 100644
--- a/core/modules/config/config.module
+++ b/core/modules/config/config.module
@@ -13,30 +13,23 @@
function config_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.config':
- $output = '';
- $output .= '
' . t('About') . '
';
- $output .= '' . t('The Configuration Manager module provides a user interface for importing and exporting configuration changes between installations of your website in different environments such as Development, Staging, and Production.') . '
';
- $output .= '' . t('This allows you to deploy configuration from one environment to another, provided they are the same site. The site is identified using a Universally Unique Identifier (UUID). The site UUID must match the target site to allow any importing of configuration files on that site.') . '
';
- $output .= '' . t('For more information, see the online documentation for the Configuration Manager module', array(
- '!url' => 'https://drupal.org/documentation/administer/config',
- )) . '
';
- $output .= '' . t('Uses') . '
';
- $output .= '';
- $output .= '- ' . t('Exporting a Full Configuration') . '
';
- $output .= '- ' . t('Creates a downloadable archive of the active configuration. To export configuration click on Export tab under Full Import/Export on module configuration page.', array(
- '!url' => '/admin/config/development/configuration/full/export','!config' => '/admin/config/development/configuration',)) . '
';
- $output .= '- ' . t('Importing a Full Configuration') . '
';
- $output .= '- ' . t('Allows you to upload a full site configuration from an archive file. To import configuration click on Import tab under Full Import/Export on module configuration page.', array(
- '!url' => '/admin/config/development/configuration/full/import','!config' => '/admin/config/development/configuration',)) . '
';
- $output .= '- ' . t('Synchronizing Configuration'). '
';
- $output .= '- ' . t('Allows you to review differences between the active configuration and an imported configuration archive. From this list you can view the differences between the configuration to ensure that the changes are as expected, before setting the changes active. The Synchronize page will also show new or removed config files. It is important to check that there are no removals of any core configuration (such as system.*, entity.*) as this will result in a site error. To synchronize configuration click on Synchronize tab on module configuration page.', array('!url' => '/admin/config/development/configuration',)) . '
';
- $output .= '- ' . t('Exporting a Single Configuration Item') . '
';
- $output .= '- ' . t('Allows you to export a single configuration item to YAML that can be copied into the single import form. To export Single Configuration Item click on Export tab under Single Import/Export on module configuration page.', array(
- '!url' => '/admin/config/development/configuration/single/export','!config' => '/admin/config/development/configuration',)) . '
';
- $output .= '- ' . t('Importing a Single Configuration Item') . '
';
- $output .= '- ' . t('Allows you to import a single configuration item by pasting YAML into a form. To import configuration click on Import tab under Single Import/Export on module configuration page.', array('!url' => '/admin/config/development/configuration/single/import','!config' => '/admin/config/development/configuration',)) . '
';
- $output .= '
';
- return $output;
+ $output = '';
+ $output .= '' . t('About') . '
';
+ $output .= '' . t('The Configuration Manager module provides a user interface for importing and exporting configuration changes between installations of your website in different environments, such as development, staging, and production. Configuration is saved in YAML format in individual *.yml files. For more information, see the online documentation for the Configuration Manager module.', array('!url' => 'https://www.drupal.org/documentation/administer/config')) . '
';
+ $output .= '' . t('Uses') . '
';
+ $output .= '';
+ $output .= '- ' . t('Exporting a full configuration') . '
';
+ $output .= '- ' . t('You can create and download an archive consisting of all configuration *.yml files of your site on the Export page.' , array('!url' => \Drupal::url('config.export_full'))) . '
';
+ $output .= '- ' . t('Importing a full configuration') . '
';
+ $output .= '- ' . t('You can upload a full site configuration from an archive file on the Import page. The site is identified using a Universally Unique Identifier (UUID) which must match the target site to allow the import of configuration files on that site.', array('!url' => \Drupal::url('config.import_full'))) . '
';
+ $output .= '- ' . t('Exporting a single configuration item') . '
';
+ $output .= '- ' . t('You can export a single configuration item by selecting a Configuration type and Configuration name on the Single export page. The configuration and its corrensponding *.yml file name is then displayed on the page for you to copy it.', array('!single-export' => \Drupal::url('config.export_single'))) . '
';
+ $output .= '- ' . t('Importing a single configuration item') . '
';
+ $output .= '- ' . t('You can to import a single configuration item by pasting it in YAML format into the form on the Single import page.', array('!single-import' => \Drupal::url('config.import_single'))) . '
';
+ $output .= '- ' . t('Synchronizing configuration'). '
';
+ $output .= '- ' . t('You can review differences between the active configuration and an imported configuration archive on the Synchronize page to ensure that the changes are as expected, before setting the changes active. The Synchronize page also shows new or removed configuration files. It is important to check that there are no removals of any core configurationfiles (such as system.*, entity.*) as this will result in a site error.', array('!synchronize' => \Drupal::url('config.sync'))) . '
';
+ $output .= '
';
+ return $output;
case 'config.sync':
$output = '';