moodle/mod
2012-05-08 14:53:54 +08:00
..
assign MDL-32754: Add missing string for assign:addinstance capability 2012-05-04 12:05:58 +08:00
assignment MDL-31270 mod_assign: introducing the assignment module 2012-05-03 14:44:06 +08:00
chat MDL-31607 use full course object for require_login() if already available 2012-04-22 17:41:47 +02:00
choice MDL-30686 improve accuracy of qualified_me() by trying PAGE->url first 2012-04-27 13:39:18 +02:00
data Merge branch 'MDL-19391-master-1' of git://git.luns.net.uk/moodle 2012-04-30 12:16:35 +12:00
feedback Merge branch 'MDL-32624_master_wip' of git://github.com/grabs/moodle 2012-04-30 11:57:40 +12:00
folder MDL-32471 preview thumbnails support for activity modules 2012-04-24 12:09:45 +02:00
forum Merge branch 'w18_MDL-30686_m23_guessurl' of git://github.com/skodak/moodle 2012-05-01 11:27:16 +08:00
glossary Merge branch 'MDL-32471-thumbnails' of git://github.com/mudrd8mz/moodle 2012-04-25 15:14:27 +02:00
imscp MDL-32471 preview thumbnails support for activity modules 2012-04-24 12:09:45 +02:00
label MDL-31950 - Label - Removing the deprecated label_get_participants function 2012-05-08 14:53:54 +08:00
lesson Merge branch 'MDL-32471-thumbnails' of git://github.com/mudrd8mz/moodle 2012-04-25 15:14:27 +02:00
lti MDL-32569 drop migrated module tests 2012-04-21 16:58:07 +02:00
page MDL-32471 preview thumbnails support for activity modules 2012-04-24 12:09:45 +02:00
quiz MDL-32757 / MDL-3030 quiz: SQL typo breaks quiz editing. 2012-05-03 19:45:18 +01:00
resource MDL-32012 Fixed white space 2012-05-01 12:38:37 +12:00
scorm MDL-26028 cleanup all IE6 gzip hacks 2012-04-28 18:00:06 +02:00
survey MDL-31607 use full course object for require_login() if already available 2012-04-22 17:41:47 +02:00
url MDL-32569 drop migrated module tests 2012-04-21 16:58:07 +02:00
wiki Merge branch 'MDL-32471-thumbnails' of git://github.com/mudrd8mz/moodle 2012-04-25 15:14:27 +02:00
workshop Merge branch 'MDL-32638-workshop-files' of git://github.com/mudrd8mz/moodle 2012-05-02 18:01:40 +08:00
index.html
README.txt
upgrade.txt MDL-32471 preview thumbnails support for activity modules 2012-04-24 12:09:45 +02: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