moodle/mod
Hugh Davenport 45ae1da263 MDL-49940 mod_survey: Escape user comments
This patch fixes a XSS vulnerability with surveys where a student user
    could inject arbitrary HTML in a comment on the survey. The fix is to
    escape the comment before displaying it to the teacher.
2015-11-04 18:46:27 +08:00
..
assign MDL-52004 assign: Set unique urls when grading so autosaves work 2015-11-02 16:41:55 +08:00
assignment MDL-50183 upgrade: add 2.9.0 separation line to all upgrade scripts 2015-05-12 00:21:05 +02:00
book MDL-46455 mod_*: added restore mapping to events 2015-10-11 18:14:57 -07:00
chat Merge branch 'MDL-51565-master' of git://github.com/jleyva/moodle 2015-10-16 09:35:23 +08:00
choice Merge branch 'MDL-51594-master' of git://github.com/jleyva/moodle 2015-10-15 14:19:10 +08:00
data MDL-51486 mod_data: Unit test update for item ratings. 2015-11-04 10:12:39 +08:00
feedback MDL-46455 events: added more mapping 2015-10-11 18:52:36 -07:00
folder MDL-46455 mod_*: added restore mapping to events 2015-10-11 18:14:57 -07:00
forum Merge branch 'MDL-51939-master' of git://github.com/andrewnicols/moodle 2015-10-29 13:54:56 +00:00
glossary MDL-46455 mod_*: added restore mapping to events 2015-10-11 18:14:57 -07:00
imscp MDL-46455 mod_*: added restore mapping to events 2015-10-11 18:14:57 -07:00
label MDL-50183 upgrade: add 2.9.0 separation line to all upgrade scripts 2015-05-12 00:21:05 +02:00
lesson MDL-48109 mod_lesson: prevent CSRF on password protected lesson 2015-11-04 18:46:27 +08:00
lti MDL-46455 mod_*: added restore mapping to events 2015-10-11 18:14:57 -07:00
page MDL-46455 mod_*: added restore mapping to events 2015-10-11 18:14:57 -07:00
quiz Merge branch 'wip-mdl-52020' of https://github.com/rajeshtaneja/moodle 2015-11-03 17:56:22 +01:00
resource MDL-51888 mod_resource: cache file details for performance 2015-11-02 10:38:26 +08:00
scorm Merge branch 'MDL-51594-master' of git://github.com/jleyva/moodle 2015-10-15 14:19:10 +08:00
survey MDL-49940 mod_survey: Escape user comments 2015-11-04 18:46:27 +08:00
url Merge branch 'MDL-46455-master-20151012' of git://github.com/damyon/moodle 2015-10-13 11:42:40 +08:00
wiki MDL-51260 tags: Update the tags form element to use the autocomplete field 2015-10-15 12:03:35 +08:00
workshop MDL-46455 mod_*: added restore mapping to events 2015-10-11 18:14:57 -07:00
index.html
README.txt
upgrade.txt MDL-51564 webservice: Review the use of external format_string 2015-10-06 14:00:45 +02: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