moodle/mod
2004-01-06 02:19:11 +00:00
..
assignment Use fullname function 2003-11-28 11:06:53 +00:00
attendance Inserts for MySQL and PostGRES. 2003-12-24 17:33:05 +00:00
chat Make sure teacher override is there 2003-11-28 15:37:27 +00:00
choice New setting makes it optional to show column of people who didn't answer 2004-01-01 06:35:22 +00:00
dialogue Bugs fixed in backup and restore. Dialogue now notifies if there are any 2003-12-24 14:36:18 +00:00
exercise A new version (2003121000). Fixes to backup/restore. Addition of "late" 2003-12-24 14:43:24 +00:00
forum New option to allow students to see aggregate ratings on other posts (anonymous) 2004-01-01 04:48:55 +00:00
glossary A little spacing on the display 2003-12-10 16:36:38 +00:00
journal Use fullname function for displaying names 2003-11-28 15:45:46 +00:00
label Use the new method for calling html editor 2003-11-24 01:16:25 +00:00
quiz Changed to UNIX file type and removed tabs for documentation. o U 2004-01-06 02:19:11 +00:00
resource Improved navigation info in header 2003-12-30 06:54:19 +00:00
survey Use fullname function for names 2003-11-28 15:47:11 +00:00
workshop Added support to teacherloading, assessmentstodrop and donotuse 2004-01-05 18:21:42 +00:00
newmodule_template.zip Now the module template includes the XXXX_get_participants() 2003-09-29 18:14:23 +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.