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
m (added link to spanish translation of document)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Installing Moodle}}==What is an add-on?==
{{Installing Moodle}}==What is a plugin?==


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.
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.


Moodle code = core code + plugins. Plugins may be either standard plugins (included in the Moodle distribution) or add-ons.  
A number of plugins are included in the standard Moodle download. Additional plugins may be obtained from the [http://moodle.org/plugins Moodle plugins directory].


==Where can I download add-ons from?==
==How do I install a plugin?==
 
The [http://moodle.org/plugins 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.   
See [[Installing plugins]] for instructions. Some, but not all, contributors include a "Read me" file with instructions in their plugin package.   
Line 19: Line 15:
See [[:dev:How to 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?==
==Why doesn't my newly installed plugin show up in the list of plugins?==


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.
Line 27: Line 23:
See [[:dev:Guidelines for contributed code|Guidelines for contributed code]].
See [[:dev:Guidelines for contributed code|Guidelines for contributed code]].


==Is there any information on creating a new add-on?==
==Is there any information on creating a new plugin?==


Yes! See [[:dev:Developer documentation]]. More coming soon!
Yes! See [[:dev:Plugins]].


==See also==
==See also==


* Using Moodle [http://moodle.org/mod/forum/view.php?id=44 General add-ons forum]
* Using Moodle [http://moodle.org/mod/forum/view.php?id=44 General plugins forum]
* [https://moodle.org/mod/forum/discuss.php?d=325804#p1309721 Moodle 2015 favorite plugins] forum thread by Gavin Henrick, with lots of useful information about Moodle plugins


[[Category:Contributed code]]
[[Category:Contributed code]]
[[Category:FAQ]]
[[Category:FAQ]]


[[es:Complementos FAQ]]
[[fr:FAQ de code tiers]]
[[es:Plugins FAQ]]

Latest revision as of 09:04, 15 February 2017

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 dev:Plugins.

See also