Note: You are currently viewing documentation for Moodle 3.2. Up-to-date documentation for the latest stable version of Moodle is probably available here: Plugins FAQ.

Plugins FAQ: Difference between revisions

From MoodleDocs
(rewording)
m (added link to spanish translation of document)
Line 37: Line 37:
[[Category:Contributed code]]
[[Category:Contributed code]]
[[Category:FAQ]]
[[Category:FAQ]]
[[es:Complementos FAQ]]

Revision as of 00:00, 3 January 2014

What is an add-on?

An add-on, previously known as a contributed plugin, contributed code, or "contrib" for short, is understood to be all code contributed to Moodle which is not included in the standard Moodle distribution.

Moodle code = core code + plugins. Plugins may be either standard plugins (included in the Moodle distribution) or add-ons.

Where can I download add-ons from?

The Moodle plugins directory

How do I install an add-on?

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 add-on 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 add-on?

Yes! See dev:Developer documentation. More coming soon!

See also