moodle/mod
2020-05-05 09:48:24 +08:00
..
assign MDL-68409 behat: Fix tests from modal rewrite 2020-05-04 15:08:11 +08:00
assignment MDL-65809 upgrade: clean < 3.5.0 upgrade steps 2019-12-20 12:20:43 +01:00
book Merge branch 'MDL-68233' of https://github.com/timhunt/moodle 2020-04-06 12:51:22 +02:00
chat MDL-65809 upgrade: clean < 3.5.0 upgrade steps 2019-12-20 12:20:43 +01:00
choice MDL-68233 renderers/block: fix reported coding style issues 2020-03-29 15:35:04 +01:00
data MDL-68239 mod_data: make required icon in multimenu visible 2020-04-03 12:15:54 +02:00
feedback MDL-68454 mod_feedback: Update get_context to match parent 2020-05-04 11:52:20 +08:00
folder MDL-68144 mod_folder: make top margins less dominant for folder content 2020-03-27 07:14:28 +01:00
forum MDL-68500 dataformat: re-factor download/export methods into new class. 2020-05-04 16:01:12 +01:00
glossary Merge branch 'MDL-67115' of https://github.com/stronk7/moodle 2020-01-23 15:12:56 +08:00
h5pactivity Merge branch 'MDL-68379-master' of git://github.com/ferranrecio/moodle 2020-05-04 20:02:06 +02:00
imscp MDL-65809 upgrade: clean < 3.5.0 upgrade steps 2019-12-20 12:20:43 +01:00
label MDL-65809 upgrade: clean < 3.5.0 upgrade steps 2019-12-20 12:20:43 +01:00
lesson Merge branch 'MDL-68309-master' of https://github.com/snake/moodle 2020-04-30 09:57:50 +08:00
lti Merge branch 'MDL-68328-dlfix' of https://github.com/cengage/moodle 2020-05-01 23:33:08 +02:00
page MDL-65809 upgrade: clean < 3.5.0 upgrade steps 2019-12-20 12:20:43 +01:00
quiz Merge branch 'master_MDL-67540' of https://github.com/golenkovm/moodle 2020-05-01 11:20:55 +08:00
resource MDL-65809 upgrade: clean < 3.5.0 upgrade steps 2019-12-20 12:20:43 +01:00
scorm MDL-67175 mod_scorm: fixing js eslint errors 2020-02-07 08:05:14 +08:00
survey MDL-65809 upgrade: clean < 3.5.0 upgrade steps 2019-12-20 12:20:43 +01:00
url MDL-58413 mod_url: support internationalized domain names. 2020-03-20 10:24:53 +01:00
wiki MDL-68233 renderers/block: remove illegal uses of $PAGE and $OUTPUT 2020-03-29 15:34:26 +01:00
workshop MDL-68434 lang: Use the updated terminology in the tests 2020-04-29 17:40:58 +02:00
index.html
README.txt
upgrade.txt MDL-67585 core_course: deprecate the callback get_shortcuts() 2020-02-20 11:42:21 +08:00

ACTIVITY MODULES
----------------

These are main modules in Moodle, allowing various activities.


Each of these modules contains a number of expected components:

  mod_form.php: a form to setup/update a module instance

  version.php: defines some meta-info and provides upgrading code

  pix/icon.gif: a 16x16 icon for the module

  db/install.xml: an SQL dump of all the required db tables and data

  index.php: a page to list all instances in a course

  view.php: a page to view a particular instance

  lib.php: any/all functions defined by the module should be in here.
         constants should be defined using MODULENAME_xxxxxx
         functions should be defined using modulename_xxxxxx

         There are a number of standard functions:

         modulename_add_instance()
         modulename_update_instance()
         modulename_delete_instance()

         modulename_user_complete()
         modulename_user_outline()

         modulename_cron()

         modulename_print_recent_activity()


If you are a developer and interested in developing new Modules see:

   Moodle Documentation:  http://moodle.org/doc
   Moodle Community:      http://moodle.org/community