moodle/mod
2016-10-18 20:02:22 +02:00
..
assign Merge branch 'MDL-56062-master' of https://github.com/lucisgit/moodle 2016-10-18 12:06:27 +01:00
assignment MDL-54677 upgrade: add 3.1.0 separation line to all upgrade scripts 2016-05-23 01:31:34 +02:00
book Merge branch 'MDL-56295-master' of git://github.com/andrewnicols/moodle 2016-10-18 20:02:22 +02:00
chat MDL-55168 css: remove 0-length units 2016-09-30 09:25:25 +01:00
choice MDL-56131 choice: Set maximum lifetime for lock 2016-10-17 13:50:42 +08:00
data MDL-56228 phpunit: Force sort order in mod data generator test 2016-10-10 09:32:24 +08:00
feedback MDL-55833 mod_feedback: display in outline and complete reports 2016-10-13 13:49:16 +08:00
folder MDL-56100 mod_folder: add missing $OUTPUT for recent activity report. 2016-10-17 23:06:54 +02:00
forum Merge branch 'MDL-55858-master' of git://github.com/andrewnicols/moodle 2016-10-18 17:00:21 +02:00
glossary Merge branch 'MDL-55728-master' of git://github.com/jleyva/moodle 2016-10-04 10:15:37 +01:00
imscp MDL-55168 css: use shorthand colour props when possible 2016-09-30 09:25:24 +01:00
label MDL-55661 lang: Merge English strings from the en_fix language pack 2016-08-25 14:38:07 +02:00
lesson MDL-56299 core: fixed failing Behat tests 2016-10-11 14:39:24 +08:00
lti Merge branch 'MDL-55835-master' of git://github.com/danpoltawski/moodle 2016-10-11 01:21:14 +02:00
page MDL-55278 search: Updating references to area namespace 2016-07-21 18:38:18 +02:00
quiz MDL-27072 behat: Removed wrong tag from feature 2016-10-13 19:32:08 +02:00
resource MDL-55168 css: reformat plain css with stylefmt 2016-09-30 09:25:23 +01:00
scorm MDL-55168 css: fix various errors detected by stylelint 2016-09-30 09:25:25 +01:00
survey MDL-55168 css: reformat plain css with stylefmt 2016-09-30 09:25:23 +01:00
url MDL-55168 css: reformat plain css with stylefmt 2016-09-30 09:25:23 +01:00
wiki MDL-55168 css: fix various errors detected by stylelint 2016-09-30 09:25:25 +01:00
workshop MDL-54945 workshop: Improve the portfolio API implementation 2016-10-12 18:35:02 +02:00
index.html
README.txt
upgrade.txt MDL-53765 core: Deprecate update_module_button functions 2016-08-09 11:17:43 +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