moodle/mod
2020-05-07 18:30:47 +02:00
..
assign MDL-68216 block_recent_activity: Format elements more nicely. 2020-05-05 22:09:19 +02: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-68216 block_recent_activity: Format elements more nicely. 2020-05-05 22:09:19 +02: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-68216 block_recent_activity: Format elements more nicely. 2020-05-05 22:09:19 +02:00
forum MDL-68216 block_recent_activity: Format elements more nicely. 2020-05-05 22:09:19 +02:00
glossary MDL-68216 block_recent_activity: Format elements more nicely. 2020-05-05 22:09:19 +02:00
h5pactivity Merge branch 'MDL-68381-master' of git://github.com/ferranrecio/moodle 2020-05-06 17:43:53 +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 MDL-68572 quizaccess: use uploaded file as is for SEB settings 2020-05-06 17:13:53 +10:00
resource MDL-65809 upgrade: clean < 3.5.0 upgrade steps 2019-12-20 12:20:43 +01:00
scorm MDL-68410 mod_scorm: safer status operator comparison. 2020-05-07 09:02:42 +08:00
survey MDL-68216 block_recent_activity: Format elements more nicely. 2020-05-05 22:09:19 +02:00
url MDL-58413 mod_url: support internationalized domain names. 2020-03-20 10:24:53 +01:00
wiki MDL-68216 block_recent_activity: Format elements more nicely. 2020-05-05 22:09:19 +02:00
workshop MDL-68216 block_recent_activity: Format elements more nicely. 2020-05-05 22:09:19 +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