Skip to content
Snippets Groups Projects

Issue #3524547: Navigation module's help text should not link to the contrib module

Closed Ishani Patel requested to merge issue/drupal-3524547:3524547-navigation-modules-help into 11.x
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -62,7 +62,7 @@ public function help($route_name, RouteMatchInterface $route_match): ?string {
$output = '';
$output .= '<h3>' . $this->t('About') . '</h3>';
$output .= '<p>' . $this->t('The Navigation module provides a left-aligned, collapsible, vertical sidebar navigation.') . '</p>';
$output .= '<p>' . $this->t('For more information, see the <a href=":docs">online documentation for the Navigation module</a>.', [':docs' => 'https://www.drupal.org/project/navigation']) . '</p>';
$output .= '<p>' . $this->t('For more information, see the <a href=":docs">online documentation for the Navigation module</a>.', [':docs' => 'https://www.drupal.org/docs/develop/core-modules-and-themes/core-modules/navigation-module']) . '</p>';
return $output;
}
$configuration_route = 'layout_builder.navigation.';
Loading