Skip to content

Commit 14a7a8c

Browse files
committed
Issue #3336065 by Spokje, quietone: Move help topics to tour module
1 parent b3781dc commit 14a7a8c

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

modules/help/help.api.php

-8
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,6 @@
2626
* hook_help() documentation and
2727
* @link https://www.drupal.org/docs/develop/documenting-your-project/help-text-standards Help text standards @endlink
2828
* for more information.
29-
*
30-
* @section sec_tour Tours
31-
* Modules can provide tours of administrative pages by creating tour config
32-
* files and placing them in their config/optional subdirectory. See
33-
* @link https://www.drupal.org/docs/8/api/tour-api/overview Tour API overview @endlink
34-
* for more information. The contributed
35-
* @link https://www.drupal.org/project/tour_ui Tour UI module @endlink
36-
* can also be used to create tour config files.
3729
* @}
3830
*/
3931

modules/help/help_topics/core.ui_components.html.twig

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ related:
1616
<li>{% trans %}If you install the core Contextual Links module, non-administrative pages will contain links leading to related administrative tasks.{% endtrans %}</li>
1717
<li>{% trans %}In-place or <em>quick</em> editing. In-place editing of configuration is provided by the core Settings Tray module. See {{ settings_tray_topic }} for more information.{% endtrans %}</li>
1818
<li>{% trans %}The core Help module displays help topics, and provides a Help block that can be placed on administrative pages to provide an overview of their functionality.{% endtrans %}</li>
19-
<li>{% trans %}The core Tour module allows modules to provide interactive tours of administrative pages for more detailed help.{% endtrans %}</li>
2019
</ul>
2120
<h2>{% trans %}What are the sections of the administrative menu?{% endtrans %}</h2>
2221
<p>{% trans %}The administrative menu, which you can navigate by visiting <em>{{ admin_link }}</em> on your site or by using an administrative toolbar, has the following sections (some may not be available, depending on which modules are currently installed on your site, and your permissions):{% endtrans %}</p>

modules/tour/tour.api.php

+15
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@
55
* Describes API functions for tour module.
66
*/
77

8+
/**
9+
* @defgroup help_docs Help and documentation
10+
* @{
11+
* Documenting modules, themes, and install profiles
12+
*
13+
* @section sec_tour Tours
14+
* Modules can provide tours of administrative pages by creating tour config
15+
* files and placing them in their config/optional subdirectory. See
16+
* @link https://www.drupal.org/docs/8/api/tour-api/overview Tour API overview @endlink
17+
* for more information. The contributed
18+
* @link https://www.drupal.org/project/tour_ui Tour UI module @endlink
19+
* can also be used to create tour config files.
20+
* @}
21+
*/
22+
823
/**
924
* @addtogroup hooks
1025
* @{

0 commit comments

Comments
 (0)