moodle/mod
2020-04-15 09:53:03 +02:00
..
assign MDL-68223 assign: Fix selection of comment text. 2020-03-30 14:43:19 +11: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-67894 mod_feedback: database error on show responses 2020-02-07 18:48:38 +01:00
folder MDL-68144 mod_folder: make top margins less dominant for folder content 2020-03-27 07:14:28 +01:00
forum MDL-67663 mod_forum: Show/hide elements from screen reader on search 2020-04-09 17:50:09 +08:00
glossary Merge branch 'MDL-67115' of https://github.com/stronk7/moodle 2020-01-23 15:12:56 +08:00
h5pactivity MDL-67788 mod_h5pactivity: update activity attempt privacy 2020-04-14 16:58:10 +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-68233' of https://github.com/timhunt/moodle 2020-04-06 12:51:22 +02:00
lti MDL-67612 mod_lti: tcguid default to siteid 2020-04-01 00:48:15 +02:00
page MDL-65809 upgrade: clean < 3.5.0 upgrade steps 2019-12-20 12:20:43 +01:00
quiz MDL-67979 lang: Import fixed English strings (en_fix) 2020-02-25 12:21:09 +01: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-68233 renderers/block: remove illegal uses of $PAGE and $OUTPUT 2020-03-29 15:34:26 +01: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