moodle/mod
2009-03-28 15:59:26 +00:00
..
assignment performance/mymoodle MDL-18241 - Assigments were very expensive 2009-02-16 13:14:30 +00:00
chat "CHAT/MDL-14949, remove mod/chat:talk capability and check chat and readlog capabilities respectively, merged and modified from 1.9" 2009-03-11 02:34:20 +00:00
choice Choice MDL-18600 fix sort to be sorted by surname,firstname - thanks to Mihai Sucan for the fix 2009-03-26 21:23:25 +00:00
data "DATA/MDL-18136, change to moodle coding style and fix incorrect parameter of data_get_field_from_id" 2009-03-25 01:49:52 +00:00
feedback MDL-14679 fixed DML 2009-03-28 15:59:26 +00:00
forum MDL-18417 fixed DML conversion 2009-03-26 21:15:12 +00:00
glossary MDL-18401: Glossary page bar should highlight current page 2009-02-27 12:58:23 +00:00
hotpot recalcualte grades when HotPot grading method changes 2009-03-16 01:52:15 +00:00
label MDL-17427 another round of refactoring of upgrade related functions - this should be final now I hope ;-) 2009-01-29 19:58:47 +00:00
lesson MDL-18644 Bugs found by syntax checker, merged from MOODLE_19_STABLE 2009-03-23 09:53:02 +00:00
quiz quiz manual grading: MDL-17586 'Grade all 4 ungraded attempts' acutally does the opposite' 2009-03-26 01:50:22 +00:00
resource mod/resource: MDL-18691 allow custom resource types to specify their name in their own lang directory 2009-03-27 03:21:10 +00:00
scorm SCORM MDL-18626 - fix SCORM navigation breadcrumbs 2009-03-27 01:46:39 +00:00
survey MDL-18582: Made config.php consistently require_once 2009-03-17 10:52:27 +00:00
wiki "WIKI/MDL-17704, wrap wiki summary by div, merged from 1.9" 2009-01-16 05:38:40 +00:00
index.html To stop people browsing modules 2005-01-23 04:15:13 +00:00
README.txt MDL-14679 fixed references to mod.html 2008-06-01 19:09:13 +00:00
upgrade.txt MDL-17457 migrated all modules to new db/install.php; added upgrade.txt file for devs converting contrib modules 2009-01-12 21:13:28 +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