moodle/mod
2014-10-28 12:25:27 +00:00
..
assign Merge branch 'MDL-46712-master' of git://github.com/jethac/moodle 2014-10-24 15:37:26 +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 Merge branch 'MDL-47877-master' of git://github.com/andrewnicols/moodle 2014-10-28 12:25:27 +00:00
glossary Merge branch 'MDL-47183-master' of git://github.com/andrewnicols/moodle 2014-10-28 14:02:19 +13: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-43245 mod_lesson: Add string for essay grading permission. 2014-10-24 11:48:04 +02:00
lti MDL-47812 mod_lti: execute upgrade script for all DBs 2014-10-24 14:00:30 +08:00
page MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
quiz Merge branch 'MDL-46088-master' of git://github.com/timhunt/moodle 2014-10-24 17:10:56 +01:00
resource MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
scorm Merge branch 'MDL-47183-master' of git://github.com/andrewnicols/moodle 2014-10-28 14:02:19 +13:00
survey MDL-44725 Availability: Replace groupmembersonly - FEATURE_xx (6) 2014-09-02 13:03:17 +01:00
url MDL-47690 web services: Fixed invalid return parameter type in mod_url 2014-10-24 09:54:35 +02:00
wiki MDL-47613 wiki: allow searching several words 2014-10-10 16:35:13 +08: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