moodle/mod
2012-03-13 10:33:39 +13:00
..
assignment MDL-30724 mod_assignment: Minor fixes during integration 2012-03-05 16:09:50 +13:00
chat MDL-31006 fix various notices in PHP54 2012-01-18 01:04:45 +01:00
choice MDL-30815 Choice Labels are now explicitly tied with input elements 2012-02-13 08:44:12 +05:30
data MDL-31811 Add/Correct checks on activity read-only periods 2012-03-12 15:15:38 +13:00
feedback MDL-30828 mod_feedback: fixed sorting when viewing responses 2012-01-20 15:51:58 +07:00
folder MDL-30604 Added upgrade lines to upgrade.php(s) 2011-12-09 02:03:58 +01:00
forum Merge branch 'MDL-31664-22' of https://github.com/mackensen/moodle into MOODLE_22_STABLE 2012-03-12 17:02:07 +13:00
glossary MDL-31738: added functions mod_xxx_get_file_info() to glossary and data modules 2012-02-27 14:14:03 +08:00
imscp MDL-30419: IMS package content missing when using Blackboard packages 2011-12-14 21:36:04 +01:00
label MDL-30604 Added upgrade lines to upgrade.php(s) 2011-12-09 02:03:58 +01:00
lesson Merge branch 'MDL-26496_m22' of git://github.com/rwijaya/moodle into MOODLE_22_STABLE 2012-02-29 02:06:07 +01:00
lti Revert "MDL-30935_in_lti_change_role_from_instructor_to_teacher" 2012-02-16 15:40:34 +13:00
page MDL-29256 Fixed incorrect calculation of contentformat 2012-02-21 11:12:00 +01:00
quiz MDL-31702 quiz: clarify error message that has been confusing people. 2012-03-09 15:29:19 +00:00
resource MDL-29153 Fixing typo, "Bellow" should be "Below" 2012-02-10 14:37:43 +08:00
scorm Merge branch 'm22_MDL-31888' of git://github.com/danmarsden/moodle into MOODLE_22_STABLE 2012-03-12 17:29:11 +13:00
survey MDL-31006 some more PHP54 notices 2012-01-18 01:17:09 +01:00
url MDL-31107 Fixing instaces of below where it is written as bellow (two L's) 2012-02-10 15:05:16 +08:00
wiki MDL-27304 mod_wiki: Fixed up phpdocs for globals 2012-03-12 17:20:48 +13:00
workshop MDL-30865 Workshop method aggregate_grading_grades_process() accepts explicit aggregation timestamp 2011-12-23 09:21:09 +01:00
index.html
README.txt Fixed location of icon.gif 2010-03-24 10:56:22 +00:00
upgrade.txt MDL-29897 Update upgrade.txt files 2011-11-03 08:11:55 +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