moodle/mod
stronk7 f43f3f65bc Solved one important bug in RANDOM(4) and RANDOMSAMATCH(6)
question types.
And modified some of the quiz_answers restore system to
allow remapping answers with existing questions.
//Detected by scott dot elliott at mchsi dot com in Bug 84
2003-08-15 11:08:51 +00:00
..
assignment Fixed important bug when recovering assignments or forums 2003-07-28 22:31:23 +00:00
chat Added a simple help popup for chat 2003-08-11 15:06:57 +00:00
choice Added language support 2003-07-28 19:32:51 +00:00
forum Better compatibility for POstgreSQL (old regexps were case sensitive) 2003-08-15 08:16:20 +00:00
journal Added language support 2003-07-28 19:32:51 +00:00
quiz Solved one important bug in RANDOM(4) and RANDOMSAMATCH(6) 2003-08-15 11:08:51 +00:00
resource Added language support 2003-07-28 19:32:51 +00:00
survey Added language support 2003-07-28 19:32:51 +00:00
workshop Some fixes to make report work at least ... complete mode needs work 2003-08-08 17:38:28 +00:00
newmodule_template.zip Fixed call to get_all_instances_in_course() 2003-07-17 01:35:29 +00:00
README Updated module template with module_print_recent_activity() 2002-09-22 06:47:11 +00:00

This directory contains all the learning modules.

Standard components expected of each module:

  mod.html: a form to setup/update a module instance

  version.php: defines some meta-info and provides upgrading code

  icon.gif: a 16x16 icon for the module

  db/mysql.sql: 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()

See newmodule_template.zip in this directory for a blank template 
to help you get started.