moodle/mod
2021-06-10 11:43:06 +08:00
..
assign MDL-71471 assign: Remove submission from queue when converted in web 2021-06-04 15:28:30 +10:00
assignment MDL-71619 privacy: extend correct class in provider testcases. 2021-05-13 20:25:10 +01:00
book MDL-67668 behat: Update tests for inplace editable field type 2020-11-23 09:00:46 +08:00
chat MDL-70409 chat: Use require_once to import lib.php 2020-12-04 10:45:59 -05:00
choice MDL-70146 upgrade: add 3.10.0 separation line to all upgrade scripts 2020-11-07 23:26:09 +01:00
data Merge branch 'MDL-71434-310' of git://github.com/paulholden/moodle into MOODLE_310_STABLE 2021-05-06 11:15:18 +01:00
feedback MDL-70767 feedback: Prevent xss in feedback answer text. 2021-03-03 23:09:09 +01:00
folder MDL-71200 mod_folder: ensure "Download folder" option is backed up. 2021-04-22 10:29:12 +01:00
forum Merge branch 'MDL-70772-310' of git://github.com/paulholden/moodle into MOODLE_310_STABLE 2021-05-06 23:20:13 +02:00
glossary MDL-70621 mod_glossary: use glossary rsstype string. 2021-02-03 08:34:46 +01:00
h5pactivity MDL-71876 mod_h5pactivity: Increase window size during test 2021-06-09 00:53:03 +02:00
imscp MDL-68958 mod_imscp: Return manifestfilename as default response. 2021-01-25 13:23:26 +08:00
label MDL-62244 Resource: label view redirects to label, not course 2021-04-01 11:54:48 -06:00
lesson MDL-71425 lang: Fix reworded strings in tests 2021-05-04 16:56:09 +02:00
lti MDL-70622 mod_lti: Tighten redirect param typing 2021-05-07 11:45:45 +08:00
page MDL-70146 upgrade: add 3.10.0 separation line to all upgrade scripts 2020-11-07 23:26:09 +01:00
quiz Merge branch 'MDL-71838_310' of https://github.com/timhunt/moodle into MOODLE_310_STABLE 2021-06-10 11:43:06 +08:00
resource MDL-70146 upgrade: add 3.10.0 separation line to all upgrade scripts 2020-11-07 23:26:09 +01:00
scorm MDL-66979 scorm: Increase behat window size 2021-01-22 14:52:13 +08:00
survey MDL-70146 upgrade: add 3.10.0 separation line to all upgrade scripts 2020-11-07 23:26:09 +01:00
url MDL-71580 lang: Import fixed English strings (en_fix) 2021-05-12 11:08:09 +02:00
wiki MDL-71425 lang: Import fixed English strings (en_fix) 2021-05-04 16:48:21 +02:00
workshop MDL-71619 privacy: extend correct class in provider testcases. 2021-05-13 20:25:10 +01:00
index.html
README.txt
upgrade.txt MDL-68645 output: Do not apply filters when creating calendar events 2020-05-13 10:03:01 +02: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