moodle/mod
Damyon Wiese 75f87a5795 MDL-31414: Separate settings to control notifications for submissions, late submissions and submission receipts
This adds separate controls for the sending of notifications from the mod_assign.

The separate notifications are: student submission receipt (for students), feedback available (for students)
and submission updated (for graders). The grader notifications can be enabled for all submissions or just late ones.

Added code to reset the message providers on upgrade (only applies for a 2.3 dev version)
2012-05-23 08:29:22 +12:00
..
assign MDL-31414: Separate settings to control notifications for submissions, late submissions and submission receipts 2012-05-23 08:29:22 +12:00
assignment MDL-32247,MDL-32831,MDL-32900 Use correct url building of file type icons 2012-05-21 16:01:04 +08:00
book Fix permissions 2012-05-22 18:06:52 +02:00
chat MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
choice MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
data MDL-32247,MDL-32831,MDL-32900 Use correct url building of file type icons 2012-05-21 16:01:04 +08:00
feedback MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
folder MDL-33153 Resource: rename submit button to 'save changes' in folder resource 2012-05-22 09:36:29 +08:00
forum Merge branch 'w21_MDL-32379_m23_forumcron' of git://github.com/skodak/moodle 2012-05-22 13:05:28 +08:00
glossary MDL-32247,MDL-32831,MDL-32900 Use correct url building of file type icons 2012-05-21 16:01:04 +08:00
imscp MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
label MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
lesson MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
lti MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
page MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
quiz MDL-32727 - quiz: fix incorrect variable name in upgrade 2012-05-18 15:08:07 +08:00
resource MDL-32247,MDL-32831,MDL-32900 Use correct url building of file type icons 2012-05-21 16:01:04 +08:00
scorm MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
survey MDL-32925 lang: Add extended help texts for all modules 2012-05-18 00:27:04 +08:00
url MDL-32247,MDL-32831,MDL-32900 Use correct url building of file type icons 2012-05-21 16:01:04 +08:00
wiki MDL-32247,MDL-32831,MDL-32900 Use correct url building of file type icons 2012-05-21 16:01:04 +08:00
workshop MDL-32247,MDL-32831,MDL-32900 Use correct url building of file type icons 2012-05-21 16:01:04 +08:00
index.html
README.txt
upgrade.txt MDL-29624 Media embedding system, part 1: new API and filter changes 2012-05-09 18:29:29 +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