moodle/mod
Cameron Ball 1688564a6e MDL-52651 htmlpurifier: Append rel=noreferrer to links.
Thank you to Zachary Durber for originally working on this issue.
2016-03-08 02:05:55 +01:00
..
assign MDL-52901 mod_assign: Check due dates in external save_submission 2016-03-08 00:12:29 +01:00
assignment MDL-50175 graphics: Optimized SVGs with SVGO. 2016-02-25 11:56:42 +00:00
book MDL-50175 graphics: Optimized SVGs with SVGO. 2016-02-25 11:56:42 +00:00
chat MDL-50175 graphics: Optimized SVGs with SVGO. 2016-02-25 11:56:42 +00:00
choice MDL-50175 graphics: Optimized SVGs with SVGO. 2016-02-25 11:56:42 +00:00
data MDL-52651 htmlpurifier: Append rel=noreferrer to links. 2016-03-08 02:05:55 +01:00
feedback MDL-44952 mod_feedback: set value for hidenoselect if disabled 2016-03-01 12:21:00 +08:00
folder Merge branch 'MDL-53200-master-enfix' of git://github.com/mudrd8mz/moodle 2016-03-01 21:23:16 +01:00
forum MDL-53050 mod_forum: fix for base highlight 2016-03-02 17:18:51 +08:00
glossary MDL-50175 graphics: Optimized SVGs with SVGO. 2016-02-25 11:56:42 +00:00
imscp Merge branch 'MDL-50175-master' of git://github.com/danpoltawski/moodle 2016-03-01 08:07:56 +08:00
label MDL-50175 graphics: Optimized SVGs with SVGO. 2016-02-25 11:56:42 +00:00
lesson Merge branch 'MDL-53200-master-enfix' of git://github.com/mudrd8mz/moodle 2016-03-01 21:23:16 +01:00
lti MDL-50175 graphics: Optimized SVGs with SVGO. 2016-02-25 11:56:42 +00:00
page MDL-50175 graphics: Optimized SVGs with SVGO. 2016-02-25 11:56:42 +00:00
quiz Merge branch 'MDL-52669-master' of git://github.com/jleyva/moodle 2016-03-01 14:56:58 +08:00
resource MDL-50175 graphics: Optimized SVGs with SVGO. 2016-02-25 11:56:42 +00:00
scorm MDL-50175 graphics: Optimized SVGs with SVGO. 2016-02-25 11:56:42 +00:00
survey MDL-50175 graphics: Optimized SVGs with SVGO. 2016-02-25 11:56:42 +00:00
url MDL-50175 graphics: Optimized SVGs with SVGO. 2016-02-25 11:56:42 +00:00
wiki Merge branch 'MDL-52809-master' of git://github.com/dpalou/moodle 2016-03-01 12:23:54 +08:00
workshop Merge branch 'MDL-50175-master' of git://github.com/danpoltawski/moodle 2016-03-01 08:07:56 +08:00
index.html
README.txt
upgrade.txt MDL-51839 mod: Info about removing icon.gif files 2016-02-16 11:02:49 +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