moodle/mod
2013-06-10 16:20:45 +08:00
..
assign Merge branch 'MDL-39317-24' of git://github.com/damyon/moodle into MOODLE_24_STABLE 2013-06-04 11:26:45 +08:00
assignment MDL-39642 Merge English strings from the en_fix language pack 2013-05-13 10:06:39 +02:00
book MDL-39422 mod_forms: prevent long coruse module names 2013-04-30 17:42:03 +01:00
chat MDL-39642 Merge English strings from the en_fix language pack 2013-05-13 10:06:39 +02:00
choice Merge branch 'MDL-38315-m24' of git://github.com/sammarshallou/moodle into MOODLE_24_STABLE 2013-05-06 22:19:55 +08:00
data MDL-39422 mod_forms: prevent long coruse module names 2013-04-30 17:42:03 +01:00
feedback MDL-39932 mod_feedback - Mapping Feedback when Course is Deleted - thx to David N. Johnson 2013-05-30 23:12:54 +02:00
folder MDL-39374 log only real folder edits 2013-05-15 21:37:25 +02:00
forum MDL-39947 mod_forum: Add safety check to variable assignment when counting unread posts 2013-05-31 09:50:35 +09:30
glossary Merge branch 'MDL-38315-m24' of git://github.com/sammarshallou/moodle into MOODLE_24_STABLE 2013-05-06 22:19:55 +08:00
imscp MDL-32480 allow external https links in IMSCP too 2013-06-07 09:59:50 +02:00
label MDL-38440 WebService get_contents doesn't return the full text of labels 2013-04-26 15:59:14 +08:00
lesson MDL-39642 Merge English strings from the en_fix language pack 2013-05-13 10:06:39 +02:00
lti MDL-39642 Merge English strings from the en_fix language pack 2013-05-13 10:06:39 +02:00
page MDL-39422 mod_forms: prevent long coruse module names 2013-04-30 17:42:03 +01:00
quiz MDL-39971 each attempt builds on last broken for previews. 2013-05-31 20:33:38 +01:00
resource MDL-39422 mod_forms: prevent long coruse module names 2013-04-30 17:42:03 +01:00
scorm MDL-39939 Fix the basic SCORM report plugin name 2013-06-04 12:27:51 +08:00
survey MDL-38352 Merge English strings from the en_fix language pack 2013-03-06 16:55:00 +01:00
url MDL-39642 Merge English strings from the en_fix language pack 2013-05-13 10:06:39 +02:00
wiki MDL-39422 mod_forms: prevent long coruse module names 2013-04-30 17:42:03 +01:00
workshop MDL-39491 Fix order of Workshop submission text processing 2013-05-03 11:51:43 +02:00
index.html
README.txt
upgrade.txt MDL-34448 - mod/data - Fixing separate groups viewing all entries. 2012-10-05 08:11:11 +08: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

  pix/icon.gif: a 16x16 icon for the module

  db/install.xml: 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