moodle/mod
2018-05-16 08:56:33 +02:00
..
assign MDL-62430 privacy: validate context when deleting all user data 2018-05-14 18:13:27 +08:00
assignment Merge branch 'MDL-62228_master' of git://github.com/markn86/moodle 2018-05-15 13:31:07 +02:00
book MDL-62361 versions: bump all versions and requires near release 2018-05-09 02:46:30 +02:00
chat MDL-62147 privacy: corrections to tables, temporary tables 2018-05-16 12:57:19 +08:00
choice Merge branch 'MDL-62428_master' of git://github.com/markn86/moodle 2018-05-15 10:58:45 +08:00
data Merge branch 'MDL-62384-master' of git://github.com/andrewnicols/moodle 2018-05-11 18:12:45 +02:00
feedback MDL-62361 versions: bump all versions and requires near release 2018-05-09 02:46:30 +02:00
folder MDL-62361 versions: bump all versions and requires near release 2018-05-09 02:46:30 +02:00
forum MDL-62147 privacy: corrections to tables, temporary tables 2018-05-16 12:57:19 +08:00
glossary Merge branch 'MDL-62463-master' of git://github.com/andrewnicols/moodle 2018-05-16 14:22:05 +08:00
imscp MDL-62361 versions: bump all versions and requires near release 2018-05-09 02:46:30 +02:00
label MDL-62361 versions: bump all versions and requires near release 2018-05-09 02:46:30 +02:00
lesson Merge branch 'MDL-62430_master' of git://github.com/dmonllao/moodle 2018-05-15 02:56:00 +02:00
lti MDL-62456 mod_lti: add missing add_external_location_link call 2018-05-16 12:22:34 +08:00
page MDL-62361 versions: bump all versions and requires near release 2018-05-09 02:46:30 +02:00
quiz MDL-62432 quiz: Check contexts more carefully 2018-05-15 09:25:51 +08:00
resource MDL-62361 versions: bump all versions and requires near release 2018-05-09 02:46:30 +02:00
scorm MDL-62361 versions: bump all versions and requires near release 2018-05-09 02:46:30 +02:00
survey MDL-62430 privacy: validate context when deleting all user data 2018-05-14 18:13:27 +08:00
url MDL-62361 versions: bump all versions and requires near release 2018-05-09 02:46:30 +02:00
wiki Merge branch 'MDL-61976_master-fix' of git://github.com/dmonllao/moodle 2018-05-10 09:17:30 +08:00
workshop MDL-61973 editor_atto: apply string changes to behat tests 2018-05-12 01:24:26 +02:00
index.html
README.txt
upgrade.txt MDL-61949 privacy: Add mention of the new API in upgrade.txt files 2018-05-10 11:35:12 +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