moodle/mod
2014-06-16 17:28:15 +08:00
..
assign Merge branch 'MDL-45940-master' of git://github.com/damyon/moodle 2014-06-16 17:28:15 +08:00
assignment MDL-45503 upgrade: add v2.7.0 sep lines 2014-05-28 01:13:42 +02:00
book MDL-45630 events: removed unnecessary 'the' from event descriptions 2014-05-31 15:27:11 -07:00
chat MDL-45630 events: removed unnecessary 'the' from event descriptions 2014-05-31 15:27:11 -07:00
choice MDL-45630 events: removed unnecessary 'the' from event descriptions 2014-05-31 15:27:11 -07:00
data Merge branch 'wip-MDL-44501-master' of git://github.com/abgreeve/moodle 2014-06-09 18:59:16 +02:00
feedback MDL-31998 mod_feedback - Feedback depend questions bug 2014-06-13 01:45:23 +02:00
folder MDL-45503 upgrade: add v2.7.0 sep lines 2014-05-28 01:13:42 +02:00
forum Merge branch 'MDL-18162-master-2' of git://github.com/andrewnicols/moodle 2014-06-04 12:58:03 +08:00
glossary Merge branch 'master_MDL-40371' of git://github.com/danmarsden/moodle 2014-06-03 15:19:22 +01:00
imscp MDL-45503 upgrade: add v2.7.0 sep lines 2014-05-28 01:13:42 +02:00
label MDL-45503 upgrade: add v2.7.0 sep lines 2014-05-28 01:13:42 +02:00
lesson Merge branch 'master_MDL-40371' of git://github.com/danmarsden/moodle 2014-06-03 15:19:22 +01:00
lti Merge branch 'MDL-45767_returnInstanceid' of https://github.com/moodlerooms/moodle 2014-06-10 13:34:01 +08:00
page MDL-45503 upgrade: add v2.7.0 sep lines 2014-05-28 01:13:42 +02:00
quiz Merge branch 'MDL-45901_Quiz_master' of git://github.com/nadavkav/moodle 2014-06-16 17:27:20 +08:00
resource MDL-45503 upgrade: add v2.7.0 sep lines 2014-05-28 01:13:42 +02:00
scorm MDL-42835 Scorm: Fix for JS error because no nodes are selected in the toc. 2014-06-12 13:57:34 +08:00
survey MDL-45503 upgrade: add v2.7.0 sep lines 2014-05-28 01:13:42 +02:00
url MDL-45503 upgrade: add v2.7.0 sep lines 2014-05-28 01:13:42 +02:00
wiki MDL-45789 mod_wiki: removed undefined "$this->other['itemid']" from the comments_viewed event description 2014-06-05 21:08:27 -07:00
workshop Merge branch 'MDL-45804_master' of https://github.com/markn86/moodle 2014-06-10 01:14:21 +02:00
index.html
README.txt
upgrade.txt MDL-41286 report_outline: updated report to use logging api 2014-04-15 22:42:59 -07: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