moodle/mod
2014-10-08 11:51:21 +08:00
..
assign NOBUG: Fixed file access permissions 2014-10-02 15:18:51 +01:00
assignment MDL-46045 Fix php tags (lowercase) everywhere 2014-06-19 11:05:16 +08:00
book MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
chat MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
choice MDL-3034 mod_choice: minor tidy up 2014-09-25 14:03:52 +12:00
data MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
feedback MDL-28484 core_lib: Add function for https detection 2014-10-03 13:02:29 +01:00
folder MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
forum MDL-3714 mod_forum: pre-integration clean up 2014-10-08 09:39:44 +13:00
glossary MDL-47033 general: Fix incorrect use of 'course' layout 2014-09-05 09:25:43 +12:00
imscp MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
label MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
lesson MDL-38106 lesson: fix tests introduced in MDL-32870 2014-10-08 11:51:21 +08:00
lti MDL-28484 core_lib: Add function for https detection 2014-10-03 13:02:29 +01:00
page MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
quiz Merge branch 'MDL-47132' of git://github.com/timhunt/moodle 2014-10-08 12:01:42 +13:00
resource MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
scorm MDL-45336 scorm: copied used string from quiz 2014-09-24 01:22:58 +02:00
survey MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
url MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
wiki MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
workshop MDL-31936 workshop: version bump 2014-10-07 10:15:54 +08:00
index.html
README.txt
upgrade.txt MDL-44725 Availability: Replace groupmembersonly - upgrade, core (1) 2014-09-02 13:03:07 +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