moodle/mod
2010-07-25 10:02:42 +00:00
..
assignment mod-assignment MDL-22686 Implemented solution for overflow hidden of submission table 2010-07-20 05:19:22 +00:00
chat MDL-19698 deprecated assign new by ref in chat server - there are much worse problems left I think 2010-07-19 08:32:19 +00:00
choice MDL-20508 - update the width of choice results graph. 2010-07-23 07:10:49 +00:00
data filters MDL-23456 added filtering for when adding a database activity entry 2010-07-23 03:50:11 +00:00
feedback MDL-19698 deprecated assign new by ref in feedback 2010-07-19 08:33:18 +00:00
folder fixed some comment typos 2010-07-22 09:43:30 +00:00
forum navigation MDL-23020 Added pagelayout to forum search page 2010-07-23 06:59:53 +00:00
glossary glossary MDL-23369 made glossary item autolink filter popups the right size 2010-07-22 05:51:40 +00:00
imscp fixed some comment typos 2010-07-22 09:43:30 +00:00
label MDL-23204 fixed label intro format upgrade 2010-07-16 09:20:22 +00:00
lesson MDL-23463 fixed element name typo breaking form submissions 2010-07-25 10:02:42 +00:00
page MDL-22973 fixing missing string 2010-07-25 08:08:36 +00:00
quiz MDL-23450 moving question/format/hotpot to contrib for now, because it is not ready for Moodle 2.0 yet 2010-07-24 17:30:46 +00:00
resource MDL-21619 - add label to activities and resources icons. 2010-07-23 02:15:43 +00:00
scorm MDL-22951 - move the AJAX callback out into its own include, and tidy up 2010-07-25 01:22:27 +00:00
survey fixed some comment typos 2010-07-22 09:43:30 +00:00
url MDL-21619 - add label to activities and resources icons. 2010-07-23 02:15:43 +00:00
wiki course MDL-22973 altering a pointless 2.0 function to match the equally pointless 1.9 version to at least avoid a php error 2010-07-25 05:05:44 +00:00
workshop NOMDL workshop: fixed string wording 2010-07-23 16:19:04 +00:00
index.html
README.txt Fixed location of icon.gif 2010-03-24 10:56:22 +00:00
upgrade.txt MDL-23234 finally standardised use of settings.php across all plugins - the only partial exceptions now are report and local plugins 2010-07-13 13:56:55 +00: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