- π³πΏNew Zealand quietone
Adjusting credit as described in #79. I happened to notice that @kleiton_rodrigues was not to be ticked.
π [META] Convert hook_help() module overview text to topics Fixed for the admin UI-related modules: contextual, help, inline_form_errors, quickedit, settings_tray, shortcut, toolbar, tour module(s).
Take the information that is currently in the hook_help module overview section for the module(s), and make sure the information is in one or more Twig help topic files. Steps:
switch ($route_name) {
case 'help.page.contact':
And ends either at the end of the function, or where you find another case 'something':
line.
core/modules/help_topics/help_topics
. Note that to see existing topics, you will need to enable the experimental Help Topics module (available in the latest dev versions of Drupal 8.x).
core/modules/help_topics/help_topics
. You will need to choose the appropriate module prefix for the file name -- the module that is required for the functionality. Alternatively, if the information spans several modules or if the information should be visible before the module is installed, you can use the "core" file name prefix. For instance, it might be useful to know that to get a certain functionality, you need to turn on a certain module (so that would be in the core prefix), but then the details of how to use it should only be visible once that module is turned on (so that would be in the module prefix). a) Make a patch (see Proposed Resolution section).
b) Review the patch:
admin/help/topic/action.configuring
within your site.admin/help/MODULENAME
. Verify that all the tasks described in these overview pages are covered in the topics you reviewed.Help topics will be added to cover tasks currently covered in modules' hook_help() implementations.
None.
None.
None.
Fixed
9.2
Last updated
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Adjusting credit as described in #79. I happened to notice that @kleiton_rodrigues was not to be ticked.