Plugins FAQ: Difference between revisions

From MoodleDocs
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 13: Line 13:
Firstly, check that you have visited your admin index page <nowiki>http://your_moodle_site.org/admin/index.php</nowiki> to complete the installation. Next, check that you unzipped the archive to the correct folder, and that the new plugin folder is not contained within another folder.
Firstly, check that you have visited your admin index page <nowiki>http://your_moodle_site.org/admin/index.php</nowiki> to complete the installation. Next, check that you unzipped the archive to the correct folder, and that the new plugin folder is not contained within another folder.
==How do I contribute code to Moodle?==
==How do I contribute code to Moodle?==
See [[https://moodledev.io/general/community/plugincontribution|Guidelines Guidelines for contributed code]].
See [https://moodledev.io/general/community/plugincontribution Guidelines for contributed code].
==Is there any information on creating a new plugin?==
==Is there any information on creating a new plugin?==
Yes! See https://moodledev.io/docs/apis/plugintypes.
Yes! See [https://moodledev.io/docs/apis/plugintypes Plugin types].
==See also==
==See also==
* Using Moodle [http://moodle.org/mod/forum/view.php?id=44 General plugins forum]
* Using Moodle [http://moodle.org/mod/forum/view.php?id=44 General plugins forum]
Line 21: Line 21:
[[Category:Contributed code]]
[[Category:Contributed code]]
[[Category:FAQ]]
[[Category:FAQ]]
[[https://docs.moodle.org/fr/FAQ de code tiers]]
 
[[https://docs.moodle.org/es/Plugins FAQ]]
[[de:Plugins FAQ]]
[[es:Plugins FAQ]]
[[fr:FAQ de code tiers]]

Latest revision as of 12:37, 3 October 2023

What is a plugin?

A plugin, (previously known as an add-on, contributed code, or "contrib" for short), is code enabling you to add additional features and functionality to Moodle.

A number of plugins are included in the standard Moodle download. Additional plugins may be obtained from the Moodle plugins directory.

How do I install a plugin?

See Installing plugins for instructions. Some, but not all, contributors include a "Read me" file with instructions in their plugin package.

In a typical install, you will probably copy some php files into one or more areas of you Moodle site's code, then click on the Site administration link called "Notifications" to start the install process.

How do I apply a patch?

See dev:How to apply a patch.

Why doesn't my newly installed plugin show up in the list of plugins?

Firstly, check that you have visited your admin index page http://your_moodle_site.org/admin/index.php to complete the installation. Next, check that you unzipped the archive to the correct folder, and that the new plugin folder is not contained within another folder.

How do I contribute code to Moodle?

See Guidelines for contributed code.

Is there any information on creating a new plugin?

Yes! See Plugin types.

See also