moodle/mod
2020-06-05 19:21:43 +02:00
..
assign MDL-68753 lang: Remove a redundant okay string and use "OK" everywhere 2020-05-27 09:59:44 +02:00
assignment MDL-65809 upgrade: clean < 3.5.0 upgrade steps 2019-12-20 12:20:43 +01:00
book MDL-68253 mod_book: Remove prev arrow on the firstmost page. 2020-05-15 12:20:13 +02:00
chat MDL-68645 output: Do not apply filters when creating calendar events 2020-05-13 10:03:01 +02:00
choice Merge branch 'MDL-68629_master' of https://github.com/t-schroeder/moodle 2020-05-25 16:14:54 +08:00
data MDL-68645 output: Do not apply filters when creating calendar events 2020-05-13 10:03:01 +02:00
feedback MDL-68645 output: Do not apply filters when creating calendar events 2020-05-13 10:03:01 +02:00
folder MDL-68216 block_recent_activity: Format elements more nicely. 2020-05-05 22:09:19 +02:00
forum Merge branch 'MDL-68209-master-2' of git://github.com/bmbrands/moodle 2020-05-28 16:37:21 +01:00
glossary MDL-68216 block_recent_activity: Format elements more nicely. 2020-05-05 22:09:19 +02:00
h5pactivity NOBUG: Fixed SVG browser compatibility 2020-06-05 13:24:10 +02:00
imscp MDL-65809 upgrade: clean < 3.5.0 upgrade steps 2019-12-20 12:20:43 +01:00
label MDL-65809 upgrade: clean < 3.5.0 upgrade steps 2019-12-20 12:20:43 +01:00
lesson MDL-68645 output: Do not apply filters when creating calendar events 2020-05-13 10:03:01 +02:00
lti MDL-68800 mod_lti: create gbs only for restored activity 2020-05-29 17:46:07 -04:00
page MDL-65809 upgrade: clean < 3.5.0 upgrade steps 2019-12-20 12:20:43 +01:00
quiz Merge branch 'MDL-68888-master-enfix' of git://github.com/mudrd8mz/moodle 2020-06-05 19:21:43 +02:00
resource MDL-66109 behat: Fix Example usage in feature files 2020-05-11 10:55:58 +08:00
scorm MDL-68645 output: Do not apply filters when creating calendar events 2020-05-13 10:03:01 +02:00
survey MDL-68216 block_recent_activity: Format elements more nicely. 2020-05-05 22:09:19 +02:00
url MDL-67883 core: Make core ready for MoodleNet. 2020-06-05 11:47:42 +08:00
wiki MDL-68738 wiki: Prevent URLs inside links from turning into another link 2020-05-21 21:12:02 +02:00
workshop Merge branch 'MDL-68143-master' of https://github.com/HuongNV13/moodle 2020-05-22 11:52:31 +08:00
index.html
README.txt
upgrade.txt MDL-68645 output: Do not apply filters when creating calendar events 2020-05-13 10:03:01 +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