Skip to content
Snippets Groups Projects

Issue #3498524: Removed the unwanted text.

+ 3
6
@@ -18,10 +18,6 @@ function config_distro_help($route_name, RouteMatchInterface $route_match) {
@@ -18,10 +18,6 @@ function config_distro_help($route_name, RouteMatchInterface $route_match) {
case 'help.page.config_distro':
case 'help.page.config_distro':
$output = '<h3>' . t('Usage') . '</h3>';
$output = '<h3>' . t('Usage') . '</h3>';
$output .= '<p>' . t('To use this module you should install one or more
modules that provide Config Filter plugins that integrate with this
module, such as Configuration Synchronizer.') . '</p>';
$output .= '<p>' . t('Update your installed modules or themes to new
$output .= '<p>' . t('Update your installed modules or themes to new
versions that include configuration changes or updates. Run database
versions that include configuration changes or updates. Run database
updates and clear caches.') . '</p>';
updates and clear caches.') . '</p>';
@@ -30,8 +26,9 @@ function config_distro_help($route_name, RouteMatchInterface $route_match) {
@@ -30,8 +26,9 @@ function config_distro_help($route_name, RouteMatchInterface $route_match) {
$distroUpdateUrl = Url::fromRoute('config_distro.import');
$distroUpdateUrl = Url::fromRoute('config_distro.import');
$distroUpdateLink = Link::fromTextAndUrl(t('Distribution Update'), $distroUpdateUrl)->toString();
$distroUpdateLink = Link::fromTextAndUrl(t('Distribution Update'), $distroUpdateUrl)->toString();
$output .= '<p>' . t('If using the UI, navigate to Configuration >
$output .= '<p>' . t('If using the UI, navigate to Configuration > Development > @distroUpdateLink. Review and run updates.', [
Development > !distroUpdateLink (/admin/config/development/distro). Review and run updates', ['!distroUpdateLink' => $distroUpdateLink]) . '</p>';
'@distroUpdateLink' => $distroUpdateLink,
 
]) . '</p>';
$output .= '<p>' . t('If using Drush, use the Drush command config-distro-update to run imports.') . '</p>';
$output .= '<p>' . t('If using Drush, use the Drush command config-distro-update to run imports.') . '</p>';
Loading