moodle/mod
2010-05-18 20:12:30 +00:00
..
assignment portfolio & online assignment MDL-22485 require portfoliolib & check portfolios enabled before trying to add buttons 2010-05-17 08:48:54 +00:00
chat MDL-22388 Added some checks to kill these scripts dead with an unequivocal notice unless included properly from a Moodle script. 2010-05-13 02:02:05 +00:00
choice MDL-22388 Added some checks to kill these scripts dead with an unequivocal notice unless included properly from a Moodle script. 2010-05-13 02:02:05 +00:00
data rating MDL-21657 added a space in if statement to not break upgrade safety checking script 2010-05-17 09:33:33 +00:00
feedback MDL-19489 - add conditional branching (my first try) 2010-05-16 20:05:51 +00:00
folder MDL-22388 Added some checks to kill these scripts dead with an unequivocal notice unless included properly from a Moodle script. 2010-05-13 02:02:05 +00:00
forum forum MDL-22477 Fixed single discussion forum so it works, and also fixed a bunch of other little regressions and bad formatting while there. Blog forum now 100% wide too. 2010-05-17 16:00:36 +00:00
glossary rating MDL-21657 added a space in if statement to not break upgrade safety checking script 2010-05-17 09:33:33 +00:00
hotpot MDL-22463 Reinstating hotpot off-by-default status 2010-05-14 05:31:00 +00:00
imscp MDL-22388 Added some checks to kill these scripts dead with an unequivocal notice unless included properly from a Moodle script. 2010-05-13 02:02:05 +00:00
label MDL-22388 Added some checks to kill these scripts dead with an unequivocal notice unless included properly from a Moodle script. 2010-05-13 02:02:05 +00:00
lesson MDL-22421 Fixed missing $OUTPUT global declaration. Thanks to Mathias Wortmann! 2010-05-13 04:29:59 +00:00
page MDL-22388 Added some checks to kill these scripts dead with an unequivocal notice unless included properly from a Moodle script. 2010-05-13 02:02:05 +00:00
quiz MDL-22388 Added some checks to kill these scripts dead with an unequivocal notice unless included properly from a Moodle script. 2010-05-13 02:02:05 +00:00
resource MDL-22388 Added some checks to kill these scripts dead with an unequivocal notice unless included properly from a Moodle script. 2010-05-13 02:02:05 +00:00
scorm SCORM MDL-22453 - tidy up format of if statements. 2010-05-16 22:39:49 +00:00
survey MDL-21695 adding help and link strings 2010-05-18 11:57:24 +00:00
url backup MDL-22151 Implemented url module backup 2010-05-13 07:45:01 +00:00
wiki "fixed version number to make http://cvs.moodle.org/contrib/tools/check_upgrade_savepoints/ happy" 2010-05-17 09:51:40 +00:00
workshop NOBUG workshop: putting a todo note to rewrite file API support for subplugins 2010-05-18 20:12:30 +00:00
index.html
README.txt Fixed location of icon.gif 2010-03-24 10:56:22 +00:00
upgrade.txt more module upgrade notes 2010-04-13 21:42:19 +00: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