moodle/mod
2008-09-15 11:57:53 +00:00
..
assignment MDL-16423 Adding a missing $ sign 2008-09-12 19:17:53 +00:00
chat MDL-15666 - change all the portfolio plugins and callers to use exceptions 2008-09-12 11:22:15 +00:00
choice Fix up XHTML strick breakage introduce during the fix for MDL-13478. 2008-08-19 05:17:07 +00:00
data MDL-16493 file and picture element migrated; waiting for file picker to mature, presets not finished yet 2008-09-14 08:22:44 +00:00
feedback MDL-16002 rewritten upgrade locking and better upgrade progress tracking; MDL-16070 Do not use $a[0] syntax in lang packs + various other upgrade improvements and fixes 2008-08-16 12:16:01 +00:00
forum MDL-15666 - change all the portfolio plugins and callers to use exceptions 2008-09-12 11:22:15 +00:00
glossary MDL-15666 - changes to the portfolio caller tests 2008-09-11 13:47:40 +00:00
hotpot MDL-16002 rewritten upgrade locking and better upgrade progress tracking; MDL-16070 Do not use $a[0] syntax in lang packs + various other upgrade improvements and fixes 2008-08-16 12:16:01 +00:00
label MDL-16002 rewritten upgrade locking and better upgrade progress tracking; MDL-16070 Do not use $a[0] syntax in lang packs + various other upgrade improvements and fixes 2008-08-16 12:16:01 +00:00
lesson MDL-16355 Do not set lesson maxgrade to 100 but use the real value without multfactor. Merged from 1.9 2008-09-15 11:57:53 +00:00
quiz MDL-16125 "Improvement to Detailled Responses Report : Format of csv export" Fixed missing format string problem when downloading. 2008-09-15 11:39:15 +00:00
resource MDL-16423 - big refactor of the way callers interact with the portfolio code 2008-09-11 13:42:58 +00:00
scorm MDL-16088 scorm new file api conversion 2008-09-09 08:30:00 +00:00
survey MDL-16002 rewritten upgrade locking and better upgrade progress tracking; MDL-16070 Do not use $a[0] syntax in lang packs + various other upgrade improvements and fixes 2008-08-16 12:16:01 +00:00
wiki MDL-16002 rewritten upgrade locking and better upgrade progress tracking; MDL-16070 Do not use $a[0] syntax in lang packs + various other upgrade improvements and fixes 2008-08-16 12:16:01 +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