moodle/mod
2012-05-09 11:39:02 +12:00
..
assign Merge branch 'MDL-32768-CLEAN' of git://github.com/netspotau/moodle-mod_assign 2012-05-08 11:24:43 +08:00
assignment MDL-31270 mod_assign: introducing the assignment module 2012-05-03 14:44:06 +08:00
chat MDL-32670 mod/chat: also added missing call to ->set_heading in report.php 2012-05-02 19:09:43 -07:00
choice MDL-30686 improve accuracy of qualified_me() by trying PAGE->url first 2012-04-27 13:39:18 +02:00
data MDL-31940 data: Removing deprecated function data_get_participants 2012-05-08 15:04:53 +08:00
feedback MDL-32735 fix multiple E_STRICT feedback issues 2012-05-06 12:02:54 +02:00
folder MDL-31945 folder: Removing deprecated function folder_get_participants 2012-05-08 14:44:47 +08:00
forum Merge branch 'MDL-31946-master' of git://github.com/ankitagarwal/moodle 2012-05-09 11:35:38 +12: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-19125 module restrictions: addinstance capabilities for all mods 2012-03-15 17:13:43 +00: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 Merge branch 'MDL-31854' of git://github.com/timhunt/moodle 2012-05-08 12:33:45 +08:00
resource MDL-32012 Fixed white space 2012-05-01 12:38:37 +12:00
scorm MDL-30598 SCORM fix a few coding guideline issues, tidy up phpdocs 2012-05-07 21:08:53 +12: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 MDL-32718 Fixed typo in column name 2012-05-08 15:54:11 +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