Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Plugin documentation: Difference between revisions

From MoodleDocs
m (Text replacement - "</code>" to "</syntaxhighlight>")
m (Text replacement - "<code>" to "<syntaxhighlight lang="php">")
Line 6: Line 6:
A new page may be created in the docs wiki by
A new page may be created in the docs wiki by


* EITHER typing in the browser address bar: <code><nowiki>https://docs.moodle.org/en/Plugin_name</nowiki></syntaxhighlight> (where ''Plugin name'' is the name of the plugin in the plugins directory)
* EITHER typing in the browser address bar: <syntaxhighlight lang="php"><nowiki>https://docs.moodle.org/en/Plugin_name</nowiki></syntaxhighlight> (where ''Plugin name'' is the name of the plugin in the plugins directory)
* OR, for an activity or other plugin which has one or more pages in Moodle, browsing to the page in Moodle for the plugin and then following the 'Moodle Docs for this page' link. This will result in a link of the form docs.moodle.org/en/mod/pluginname. The page can then be redirected to docs.moodle.org/en/Plugin_name by adding the text <code><nowiki>#redirect [[Plugin_name]]</nowiki></syntaxhighlight>.
* OR, for an activity or other plugin which has one or more pages in Moodle, browsing to the page in Moodle for the plugin and then following the 'Moodle Docs for this page' link. This will result in a link of the form docs.moodle.org/en/mod/pluginname. The page can then be redirected to docs.moodle.org/en/Plugin_name by adding the text <syntaxhighlight lang="php"><nowiki>#redirect [[Plugin_name]]</nowiki></syntaxhighlight>.


==What should the documentation include?==
==What should the documentation include?==

Revision as of 13:03, 14 July 2021

Plugin developers, maintainers and users are welcome to include documentation about their plugin in the English Moodle Docs. Of course it is fine to have documentation elsewhere, such as the Github wiki, however one advantage of including documentation in the English Moodle Docs is that 'Moodle Docs for this page' links in Moodle (when logged in as a teacher or admin) can lead directly to your plugin documentation (as explained in en:Header and footer). And, very important, it will then be very easy for translators of Moodle Docs to add translations for this information.


Where should the documentation go?

A new page may be created in the docs wiki by

  • EITHER typing in the browser address bar:
    <nowiki>https://docs.moodle.org/en/Plugin_name</nowiki>
    
    (where Plugin name is the name of the plugin in the plugins directory)
  • OR, for an activity or other plugin which has one or more pages in Moodle, browsing to the page in Moodle for the plugin and then following the 'Moodle Docs for this page' link. This will result in a link of the form docs.moodle.org/en/mod/pluginname. The page can then be redirected to docs.moodle.org/en/Plugin_name by adding the text
    <nowiki>#redirect [[Plugin_name]]</nowiki>
    
    .

What should the documentation include?

Example infobox: Stamp collection module

*New*: Copy and complete the following template code to obtain an infobox listing details of the plugin:

{{Infobox plugin
|type = Enter the plugin type e.g. activity, block, filter
|entry = Enter the plugins directory link
|tracker = Enter the bug tracker URL
|discussion = Enter the link to the forum or discussion thread
|maintainer = [[User:Maintainer name|Maintainer name]]
|float = Enter left or right to make the box float to that side (optional)
}}

Note: If there is not yet a discussion thread about your plugin, please create one in the General plugins forum.

Note: Please make sure that the page linked in 'User:Maintainer name|Maintainer name' actually has your relevant details (profile), or a link to an existing profile in Moodle or elsewhere.

The documentation may also include

  • A features overview with screenshots or videos.
  • Installation instructions

Plugin documentation examples: en:Stamp collection module, en:Profile switches.

Which version of the user docs should the documentation be added to?

Plugin documentation should be added to the most recent version wiki in which the plugin works, for example if the plugin works in Moodle 3.4, it should be added to the Moodle 3.4 docs wiki.

I need help!

If any of the above sounds too complicated, please don't worry - just email Moodle Docs wiki admin Helen (helen@moodle.org) who will be happy to help you :-) (Restoring and redirecting pages etc. are quick and easy for a wiki admin to do!)

See also