moodle/mod
2021-05-04 23:40:20 +02:00
..
assign MDL-71425 lang: Fix reworded strings in tests 2021-05-04 16:59:21 +02:00
assignment MDL-69044 upgrade: add 3.9.0 separation line to all upgrade scripts 2020-06-14 13:09:13 +02:00
book MDL-67668 behat: Update tests for inplace editable field type 2020-11-23 09:00:46 +08:00
chat MDL-70409 chat: Use require_once to import lib.php 2020-12-04 10:46:16 -05:00
choice MDL-69130 lang: Import fixed English strings (en_fix) 2020-06-25 21:52:35 +02:00
data MDL-70912 mod_data: Add filepicker to the H5P Atto button 2021-02-16 18:17:41 +01:00
feedback MDL-70767 feedback: Prevent xss in feedback answer text. 2021-03-03 23:09:26 +01:00
folder MDL-71200 mod_folder: ensure "Download folder" option is backed up. 2021-04-22 10:29:04 +01:00
forum MDL-71359 mod_forum: empty forums shouldn't export anything. 2021-05-04 17:23:49 +02:00
glossary MDL-70621 mod_glossary: use glossary rsstype string. 2021-02-03 08:34:24 +01:00
h5pactivity MDL-70909 mod_h5pactivity: Whitespace fix 2021-04-28 10:34:00 +08:00
imscp MDL-68958 mod_imscp: Return manifestfilename as default response. 2021-01-25 13:23:38 +08:00
label MDL-62244 Resource: label view redirects to label, not course 2021-04-01 11:53:53 -06:00
lesson MDL-71425 lang: Fix reworded strings in tests 2021-05-04 16:59:21 +02:00
lti MDL-69680 lib: Replace deprecated jQuery functions 2021-03-04 12:47:44 +08:00
page MDL-69044 upgrade: add 3.9.0 separation line to all upgrade scripts 2020-06-14 13:09:13 +02:00
quiz MDL-70720 Quiz: Improve capability checks when fetching users' best grades 2021-05-04 17:23:49 +02:00
resource MDL-69044 upgrade: add 3.9.0 separation line to all upgrade scripts 2020-06-14 13:09:13 +02:00
scorm MDL-66979 scorm: Increase behat window size 2021-01-22 14:52:21 +08:00
survey MDL-69044 upgrade: add 3.9.0 separation line to all upgrade scripts 2020-06-14 13:09:13 +02:00
url MDL-69758 Web services: core_get_course_contents PHP warnings 2020-09-21 15:28:47 +01:00
wiki MDL-71425 lang: Import fixed English strings (en_fix) 2021-05-04 16:59:04 +02:00
workshop Merge branch 'MDL-70340-39' of git://github.com/jleyva/moodle into MOODLE_39_STABLE 2021-03-02 23:33:25 +01: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