moodle/mod
2014-08-26 10:30:14 +08:00
..
assign MDL-46842 assign: Fix for unit tests - previous patch was completely ignoring manually reopening attempts. 2014-08-26 10:30:14 +08:00
assignment MDL-46045 Fix php tags (lowercase) everywhere 2014-06-19 11:05:16 +08:00
book MDL-45630 events: removed unnecessary 'the' from event descriptions 2014-05-31 15:27:11 -07:00
chat MDL-46477 chat:hard coded string in mod/chat 2014-08-21 17:29:45 +05:30
choice MDL-46691 mod_choice: apply filters to user input 2014-08-15 15:53:10 +08:00
data MDL-46703 mod_data: limit the width of select element when editing templates 2014-08-16 13:36:20 +08:00
feedback MDL-31366 Feedback: decode htmlchars on output to excel 2014-07-11 13:28:16 +12:00
folder MDL-45503 upgrade: add v2.7.0 sep lines 2014-05-28 01:13:42 +02:00
forum MDL-46880 mod_forum: move cron to scheduled task 2014-08-21 13:45:43 +01:00
glossary MDL-46868 glossary / filter: performance, check modinfo sooner. 2014-08-21 14:16:15 +01:00
imscp MDL-45417 mod_imscp: Prevent entity injections from package content 2014-07-07 13:02:54 +01:00
label MDL-45503 upgrade: add v2.7.0 sep lines 2014-05-28 01:13:42 +02:00
lesson Merge branch 'MDL-45445_master' of https://github.com/markn86/moodle 2014-06-24 21:54:58 +02:00
lti Merge branch 'MDL-46536_oauthSig' of https://github.com/moodlerooms/moodle 2014-08-19 20:27:52 +02:00
page MDL-45503 upgrade: add v2.7.0 sep lines 2014-05-28 01:13:42 +02:00
quiz Merge branch 'MDL-41513_Scrollbar_not_working' of https://github.com/MorrisR2/moodle 2014-08-19 14:11:43 +08:00
resource MDL-45503 upgrade: add v2.7.0 sep lines 2014-05-28 01:13:42 +02:00
scorm MDL-46469 scorm: Update report plugins to use namespaced classnames 2014-08-19 13:56:13 +08:00
survey MDL-44523 events: Changing edulevels to make them consistent with other events 2014-07-11 10:36:00 +08:00
url MDL-45503 upgrade: add v2.7.0 sep lines 2014-05-28 01:13:42 +02:00
wiki MDL-30431 behat: Use table id for wiki comments in behat 2014-07-16 14:56:08 +08:00
workshop MDL-45029 core_course: set aggregationcoef while creating a new course module 2014-08-19 17:06:49 +08:00
index.html
README.txt
upgrade.txt MDL-41286 report_outline: updated report to use logging api 2014-04-15 22:42:59 -07: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