moodle/mod
2014-09-30 14:04:24 +01:00
..
assign Merge branch 'MDL-46171-master' of git://github.com/damyon/moodle 2014-09-30 08:03:40 +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-44725 Availability: Replace groupmembersonly - feedback (16) 2014-09-02 20:54:35 +08:00
folder MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
forum Merge branch 'MDL-36929_new_discussions' of https://github.com/andyjdavis/moodle 2014-09-29 14:21:39 +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-32870 mod_lesson: added support for files to question answers and responses 2014-09-29 11:00:28 +13:00
lti Merge branch 'MDL-46944-master-lti-iframe' of git://github.com/schmod/moodle 2014-09-15 15:08:31 +08:00
page MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
quiz MDL-45336 questionbank: use core strings instead of quiz 2014-09-24 01:22:59 +02: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-44725 workshop: correct module generation in unittests (15) 2014-09-02 13:03:37 +01: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