moodle/mod
2010-07-23 06:59:53 +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 choice module to fix accessibility issue and eliminate the use of table. 2010-07-23 03:55:06 +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
hotpot fixed some comment typos 2010-07-22 09:43:30 +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 fixed some comment typos 2010-07-22 09:43:30 +00:00
page MDL-23204 convert text to html in page intro 2010-07-16 09:21:06 +00:00
quiz quiz-report-grading MDL-20724 Fixed display of table when no results are available due to firstname/surname filtering. Merged from 19 2010-07-23 06:09:23 +00:00
resource MDL-21619 - add label to activities and resources icons. 2010-07-23 02:15:43 +00:00
scorm MDL-22951 - TOC refresh happening too early - wait till after debug 2010-07-22 19:38:19 +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 filters MDL-23456 turned added filtering for wikis 2010-07-23 02:50:35 +00:00
workshop NOMDL workshop: added error messages explanation, php notice fixed and additional access control 2010-07-20 14:17:41 +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