moodle/mod
2013-04-02 16:14:44 +08:00
..
assign Merge branch 'MDL-37079-master2' of git://github.com/mouneyrac/moodle 2013-03-19 11:13:23 +08:00
assignment Merge branch 'MDL-30481' of git://github.com/rwijaya/moodle 2013-03-05 12:55:41 +08:00
book MDL-37726 remove PREVIOUS/NEXT from all install.xml files 2013-01-29 22:34:46 +01:00
chat MDL-38352 Merge English strings from the en_fix language pack 2013-03-06 16:44:39 +01:00
choice MDL-38736 mod_choice: fix missing param type 2013-03-27 10:19:57 +08:00
data Merge branch 'MDL-38166-m' of git://github.com/andrewnicols/moodle 2013-03-20 00:13:51 +01:00
feedback Merge branch 'MDL-38005-master' of git://github.com/FMCorz/moodle 2013-03-18 13:45:41 +08:00
folder MDL-38632 folder: observe show_expanded on course page 2013-03-22 15:53:53 +01:00
forum Merge branch 'MDL-38823_master' of git://github.com/dmonllao/moodle 2013-04-02 01:47:40 +02:00
glossary MDL-38712 mod_glossary: fix missing PARAM type 2013-03-26 17:05:10 +08:00
imscp MDL-38552 forms: IMS CP content section expanded by default 2013-03-20 14:31:33 +08:00
label Merge branch 'MDL-38426_dnd_plain_text' of git://github.com/davosmith/moodle 2013-03-19 14:36:43 +08:00
lesson Merge branch 'MDL-30438_b' of git://github.com/rwijaya/moodle 2013-03-26 14:29:57 +08:00
lti MDL-32620 whitespace + comment fixes. 2013-02-19 13:21:18 +01:00
page MDL-38367 course dndupload - various tweaks to the UI 2013-03-11 22:44:55 +00:00
quiz MDL-38538 quiz auto-save front end. 2013-03-28 16:57:24 +00:00
resource MDL-38352 Merge English strings from the en_fix language pack 2013-03-06 16:44:39 +01:00
scorm Merge branch 'master_MDL-38715' of git://github.com/danmarsden/moodle 2013-04-02 16:11:01 +08:00
survey Merge branch 'MDL-38817_master' of git://github.com/dmonllao/moodle 2013-04-01 13:25:31 +02:00
url MDL-34311 mod_url: Missing setType on the external url 2013-03-25 09:39:30 +08:00
wiki Merge branch 'MDL-38352-en_fix' of git://github.com/mudrd8mz/moodle 2013-03-06 17:26:37 +01:00
workshop MDL-38215 Fix cross-db support in workshop SQL queries 2013-03-13 14:58:50 +01:00
index.html
README.txt
upgrade.txt MDL-29996 remove deprecated stuff from filter code 2012-12-30 17:02:18 +01: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