moodle/mod
2010-07-22 06:29:14 +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 Choice MDL-23448 lang tidy for users that can be enrolled - don't call them guests. 2010-07-21 10:11:18 +00:00
data MDL-23475 Some cleanups to make adding/editing entries a bit smoother. Fixed buttons on Delete too. 2010-07-22 06:29:14 +00:00
feedback MDL-19698 deprecated assign new by ref in feedback 2010-07-19 08:33:18 +00:00
folder MDL-23452, force download folder files 2010-07-22 02:45:52 +00:00
forum forum MDL-23328 forum_get_discussions_unread() now works 2010-07-22 03:54:22 +00:00
glossary glossary MDL-23369 made glossary item autolink filter popups the right size 2010-07-22 05:51:40 +00:00
hotpot 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
imscp MDL-23204 convert text to html in imscp intro 2010-07-16 09:15:00 +00:00
label MDL-23204 fixed label intro format upgrade 2010-07-16 09:20:22 +00:00
lesson MDL-23197 fixed matching regression, sorry 2010-07-21 17:42:36 +00:00
page MDL-23204 convert text to html in page intro 2010-07-16 09:21:06 +00:00
quiz MDL-23204 convert text to html in quiz intro 2010-07-16 09:22:57 +00:00
resource MDL-23204 convert text to html in resource intro 2010-07-16 09:30:19 +00:00
scorm SCORM MDL-21333 remove link to allow manual opening of window as JS communication can fail and no grades are reported from the object. Remove old strings no longer required. 2010-07-22 01:52:25 +00:00
survey MDL-23204 convert text to html in survey intro 2010-07-16 09:32:21 +00:00
url MDL-23204 convert text to html in url intro 2010-07-16 09:32:51 +00:00
wiki mod/wiki: MDL-20876 fix deprecated split() calls. 2010-07-20 01:43:11 +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