moodle/mod
2018-05-04 11:50:26 +08:00
..
assign Merge branch 'MDL-61194-master' of git://git.cameron1729.xyz/moodle 2018-05-03 17:07:57 +08:00
assignment MDL-61918 assignment: Implement null privacy provider 2018-04-16 09:59:46 +08:00
book MDL-62059 mod_book: Implement null provider for mod_book 2018-04-30 16:14:33 +10:00
chat MDL-62151 Theme boost: mod_chat styles 2018-05-03 09:34:40 +02:00
choice Merge branch 'MDL-60882-master' of git://github.com/jleyva/moodle 2018-04-27 01:36:11 +02:00
data MDL-61937 mod_data: implement privacy provider 2018-05-04 11:22:15 +08:00
feedback MDL-62181 lang: Merge English strings from the en_fix language pack 2018-04-24 22:05:30 +02:00
folder MDL-62181 lang: Merge English strings from the en_fix language pack 2018-04-24 22:05:30 +02:00
forum MDL-62181 lang: Fix changed admin node title in behat scenario 2018-04-24 22:05:30 +02:00
glossary MDL-61476 mod_glossary: Check XML arrays exist 2018-04-09 23:27:27 +02:00
imscp MDL-62055 imscp: Implement privacy API 2018-04-20 08:57:04 +02:00
label MDL-62181 lang: Merge English strings from the en_fix language pack 2018-04-24 22:05:30 +02:00
lesson MDL-61986 mod_lesson: oracle order by clob fix 2018-04-26 18:30:40 +02:00
lti MDL-61920 mod_lti: implement privacy provider 2018-04-30 18:43:19 +08:00
page MDL-62181 lang: Merge English strings from the en_fix language pack 2018-04-24 22:05:30 +02:00
quiz Merge branch 'MDL-61407-master' of git://github.com/andrewnicols/moodle 2018-05-04 11:50:26 +08:00
resource MDL-62181 lang: Merge English strings from the en_fix language pack 2018-04-24 22:05:30 +02:00
scorm MDL-61959 mod_scorm: Implement privacy API 2018-04-26 19:56:33 +02:00
survey MDL-62181 lang: Merge English strings from the en_fix language pack 2018-04-24 22:05:30 +02:00
url MDL-62181 lang: Merge English strings from the en_fix language pack 2018-04-24 22:05:30 +02:00
wiki MDL-61163 mod_wiki: guests should be able to view frontpage modules 2018-03-29 11:11:48 +08:00
workshop MDL-60991 Workshop: Display late submission text after deadline 2018-03-01 13:51:46 +00:00
index.html
README.txt
upgrade.txt MDL-60923 backup: Added $CFG->backuptempdir 2018-04-16 23:50:28 +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