moodle/mod
2008-06-11 05:39:52 +00:00
..
assignment MDL-15189 magic quotes finally removed 2008-06-09 16:53:30 +00:00
chat "MDL-12304, fix double text, merged from MOODLE_18_STABLE" 2008-06-10 05:17:49 +00:00
choice MDL-15189 magic quotes finally removed 2008-06-09 16:53:30 +00:00
data MDL-14679 last forgotten bits of dml conversion 2008-06-09 19:48:24 +00:00
exercise MDL-10662, I found these bugs when I was working on MDL-14068 2008-04-04 04:32:29 +00:00
feedback MDL-15202 2008-06-10 13:04:34 +00:00
forum MDL-14679 last forgotten bits of dml conversion 2008-06-09 19:48:24 +00:00
glossary MDL-14679 last forgotten bits of dml conversion 2008-06-09 19:48:24 +00:00
hotpot MDL-14679 last forgotten bits of dml conversion 2008-06-09 19:48:24 +00:00
journal MDL-14129, remove all the other error() call 2008-04-04 02:54:20 +00:00
label "MDL-14120, fix print_error" 2008-06-08 09:11:10 +00:00
lams MDL-14129, remove all the other error() call 2008-04-04 02:54:20 +00:00
lesson MDL-15112 lesson dml conversion 2008-06-11 05:39:52 +00:00
quiz MDL-14203 "split report into two seperate reports - Quiz Statistics report and Individual Item Analysis report" added CIC, ER and SE calculations. Calculation needs debugging. 2008-06-10 18:15:19 +00:00
resource MDL-15114 resource mod converted 2008-06-04 00:04:03 +00:00
scorm MDL-15189 magic quotes finally removed 2008-06-09 16:53:30 +00:00
survey MDL-15189 magic quotes finally removed 2008-06-09 16:53:30 +00:00
wiki MDL-15189 magic quotes finally removed 2008-06-09 16:53:30 +00:00
workshop MDL-14129, remove all the other error() call 2008-04-04 02:54:20 +00:00
index.html
README.txt MDL-14679 fixed references to mod.html 2008-06-01 19:09:13 +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

  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()


If you are a developer and interested in developing new Modules see:
  
   Moodle Documentation:  http://moodle.org/doc
   Moodle Community:      http://moodle.org/community