moodle/mod
2012-10-08 10:22:18 +13:00
..
assign Merge branch 'MDL-35660' of git://github.com/netspotau/moodle-mod_assign 2012-10-02 22:02:23 +02:00
assignment MDL-30121 Assignment 2.2: Draft submission files will not be included in zip, if activity is open 2012-08-24 09:48:45 +08:00
book MDL-33646 book: Adding a notice instead of error when there is no content in the book 2012-10-04 13:25:18 +08:00
chat Merge branch 'wip-mdl-30918' of git://github.com/rajeshtaneja/moodle 2012-09-25 13:36:48 +08:00
choice MDL-34657 user sorting: consistent sorting everywhere. 2012-09-27 12:41:42 +01:00
data Merge branch 'MDL-31496_master' of git://github.com/dmonllao/moodle 2012-09-03 12:20:38 +12:00
feedback Merge branch 'MDL-34952_master' of git://github.com/grabs/moodle 2012-08-29 13:26:51 +08:00
folder MDL-34338 mod_folder: delete unused $browser var. 2012-09-11 02:18:38 +02:00
forum Merge branch 'MDL-33933-master' of https://github.com/mackensen/moodle 2012-10-02 09:43:38 +08:00
glossary MDL-33829 mod_glossary: added some smarts so glossary entries with an image in their description are classed as richhtml instead of plainhtml 2012-09-30 10:54:52 +08:00
imscp MDL-34741 use 2in3 in mod_imscp 2012-08-11 20:40:04 +02:00
label MDL-34096 Installation : Added 2.3 upgrade line to db upgrade scripts. 2012-06-29 11:41:09 +08:00
lesson MDL-34657 user sorting: consistent sorting everywhere. 2012-09-27 12:41:42 +01:00
lti MDL-34741 use 2in3 in mod_lti 2012-08-11 20:40:06 +02:00
page MDL-31973 Remove inadvertantly committed function call from testing 2012-08-29 09:22:11 +01:00
quiz MDL-35744 quiz: fix review options for Never submitted attempts 2012-10-02 15:51:45 +01:00
resource MDL-34234 course: Fixed notice causing issues in JS when upgrade settings for 2.3+ not run 2012-10-01 09:58:09 +13:00
scorm MDL-35227 SCORM: set completion in correct location. 2012-09-28 09:02:30 +12:00
survey MDL-34741 use 2in3 in mod_survey 2012-08-11 20:40:11 +02:00
url MDL-34470 url: Replace all instances of get_context_instance() with context_xxx::instance() in mod/url 2012-07-23 15:10:07 +08:00
wiki MDL-28616 wiki: use class variable for toc header depth 2012-09-14 05:49:14 -07:00
workshop MDL-34657 workshop / user sorting: fix SQL regression. 2012-10-04 11:47:04 +01:00
index.html
README.txt
upgrade.txt MDL-35226 lesson: Adding $extrapagetitle to the api mod_lesson_renderer::header() 2012-09-17 10:24:32 +08: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